10 references to NewArrayBounds
System.Linq.Expressions (10)
System\Linq\Expressions\Compiler\LambdaCompiler.Generated.cs (1)
123case ExpressionType.NewArrayBounds:
System\Linq\Expressions\Compiler\StackSpiller.Generated.cs (1)
109case ExpressionType.NewArrayBounds:
System\Linq\Expressions\DebugViewWriter.cs (1)
788if (node.NodeType == ExpressionType.NewArrayBounds)
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
543case ExpressionType.NewArrayBounds:
System\Linq\Expressions\Interpreter\LightCompiler.cs (2)
2534Debug.Assert(node.NodeType == ExpressionType.NewArrayBounds); 3080case ExpressionType.NewArrayBounds: CompileNewArrayExpression(expr); break;
System\Linq\Expressions\NewArrayExpression.cs (4)
109public sealed override ExpressionType NodeType => ExpressionType.NewArrayBounds; 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> 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> 250return NewArrayExpression.Make(ExpressionType.NewArrayBounds, arrayType, boundsList);