1 write to Expressions
System.Linq.Expressions (1)
System\Linq\Expressions\NewArrayExpression.cs (1)
22Expressions = expressions;
24 references to Expressions
Microsoft.CodeAnalysis.VisualBasic.Emit.UnitTests (2)
ExpressionTrees\Sources\ExprLambdaUtils.vb (2)
386Dim n As Integer = node.Expressions.Count 389Visit(node.Expressions(i))
System.Linq.Expressions (19)
System\Linq\Expressions\Compiler\LambdaCompiler.Expressions.cs (1)
900ReadOnlyCollection<Expression> expressions = node.Expressions;
System\Linq\Expressions\Compiler\StackSpiller.cs (2)
484var cr = new ChildRewriter(this, stack, node.Expressions.Count); 485cr.Add(node.Expressions);
System\Linq\Expressions\DebugViewWriter.cs (2)
792VisitExpressions('[', node.Expressions); 798VisitExpressions('{', node.Expressions);
System\Linq\Expressions\Expression.DebuggerProxy.cs (1)
342public ReadOnlyCollection<Expression> Expressions => _node.Expressions;
System\Linq\Expressions\ExpressionStringBuilder.cs (2)
547VisitExpressions('(', node.Expressions, ')'); 552VisitExpressions('{', node.Expressions, '}');
System\Linq\Expressions\ExpressionVisitor.cs (1)
423return node.Update(Visit(node.Expressions));
System\Linq\Expressions\Interpreter\LightCompiler.cs (2)
2520foreach (Expression arg in node.Expressions) 2526int rank = node.Expressions.Count;
System\Linq\Expressions\NewArrayExpression.cs (8)
63/// <param name="expressions">The <see cref="Expressions"/> property of the result.</param> 70if (ExpressionUtils.SameElements(ref expressions!, Expressions)) 121/// <returns>A <see cref="NewArrayExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.NewArrayInit"/> and the <see cref="NewArrayExpression.Expressions"/> property set to the specified value.</returns> 133/// <returns>A <see cref="NewArrayExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.NewArrayInit"/> and the <see cref="NewArrayExpression.Expressions"/> property set to the specified value.</returns> 196/// <param name="bounds">An array that contains Expression objects to use to populate the <see cref="NewArrayExpression.Expressions"/> collection.</param> 197/// <returns>A <see cref="NewArrayExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.NewArrayBounds"/> and the <see cref="NewArrayExpression.Expressions"/> property set to the specified value.</returns> 208/// <param name="bounds">An <see cref="IEnumerable{T}"/> that contains <see cref="Expression"/> objects to use to populate the <see cref="NewArrayExpression.Expressions"/> collection.</param> 209/// <returns>A <see cref="NewArrayExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.NewArrayBounds"/> and the <see cref="NewArrayExpression.Expressions"/> property set to the specified value.</returns>
System.Linq.Queryable (3)
System\Linq\EnumerableRewriter.cs (3)
109List<Expression> exprs = new List<Expression>(na.Expressions.Count); 110for (int i = 0, n = na.Expressions.Count; i < n; i++) 112exprs.Add(FixupQuotedExpression(elementType, na.Expressions[i]));