如何将项目插入到表达式数组中

发布于 2024-09-13 09:04:36 字数 185 浏览 0 评论 0原文

如何将项目插入表达式数组?例如:一些代码如

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

千柳 2024-09-20 09:04:36

如果你想使用数组,你需要先初始化它:

Expression<Func<int, bool>>[] exprs = new Expression<Func<int, bool>>[arrayLength];
Expression<Func<int, bool>> expr = i => i > 0;
exprs[0] = expr;

这就像 C# 中的任何其他数组类型一样。有关数组的详细信息,请参阅 MSDN

如果您只需要一个可以根据需要增长的集合,请考虑使用 List

List<Expression<Func<int, bool>>> exprs = new List<Expression<Func<int, bool>>>();
Expression<Func<int, bool>> expr = i => i > 0;
exprs.Add(expr);  // This works with List<T> - you don't need the size in advance.

If you want to use an array, you need to initialize it first:

Expression<Func<int, bool>>[] exprs = new Expression<Func<int, bool>>[arrayLength];
Expression<Func<int, bool>> expr = i => i > 0;
exprs[0] = expr;

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:

List<Expression<Func<int, bool>>> exprs = new List<Expression<Func<int, bool>>>();
Expression<Func<int, bool>> expr = i => i > 0;
exprs.Add(expr);  // This works with List<T> - you don't need the size in advance.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文