如何将项目插入到表达式数组中
如何将项目插入表达式数组?例如:一些代码如
Expression<Func<int, bool>>[] exprs;
Expression<Func<int, bool>> expr = i => i > 0;
exprs.Add(expr);
How can insert an item to Expression array? For example: some code like
Expression<Func<int, bool>>[] exprs;
Expression<Func<int, bool>> expr = i => i > 0;
exprs.Add(expr);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想使用数组,你需要先初始化它:
这就像 C# 中的任何其他数组类型一样。有关数组的详细信息,请参阅 MSDN。
如果您只需要一个可以根据需要增长的集合,请考虑使用
List
:If you want to use an array, you need to initialize it first:
This just just like any other array type in C#. For details on arrays, see MSDN.
If you just need a collection that can grow as needed, consider
List<T>
instead: