11 references to ArrayLength
System.Linq.Expressions (11)
System\Linq\Expressions\Compiler\LambdaCompiler.Generated.cs (1)
69case ExpressionType.ArrayLength:
System\Linq\Expressions\Compiler\LambdaCompiler.Unary.cs (1)
124if (op == ExpressionType.ArrayLength)
System\Linq\Expressions\Compiler\StackSpiller.Generated.cs (1)
65case ExpressionType.ArrayLength:
System\Linq\Expressions\DebugViewWriter.cs (2)
904case ExpressionType.ArrayLength: 951case ExpressionType.ArrayLength:
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
610case ExpressionType.ArrayLength: Out("ArrayLength("); break;
System\Linq\Expressions\Interpreter\LightCompiler.cs (2)
1244case ExpressionType.ArrayLength: 3054case ExpressionType.ArrayLength:
System\Linq\Expressions\UnaryExpression.cs (3)
327ExpressionType.ArrayLength => ArrayLength(operand), 806/// <returns>A <see cref="UnaryExpression"/> that has the <see cref="NodeType"/> property equal to <see cref="ExpressionType.ArrayLength"/> and the <see cref="UnaryExpression.Operand"/> property equal to <paramref name="array"/>.</returns> 825return new UnaryExpression(ExpressionType.ArrayLength, array, typeof(int), null);