11 references to ArrayLength
System.Linq.Expressions (11)
System\Linq\Expressions\Compiler\LambdaCompiler.Generated.cs (1)
69
case ExpressionType.
ArrayLength
:
System\Linq\Expressions\Compiler\LambdaCompiler.Unary.cs (1)
124
if (op == ExpressionType.
ArrayLength
)
System\Linq\Expressions\Compiler\StackSpiller.Generated.cs (1)
65
case ExpressionType.
ArrayLength
:
System\Linq\Expressions\DebugViewWriter.cs (2)
904
case ExpressionType.
ArrayLength
:
951
case ExpressionType.
ArrayLength
:
System\Linq\Expressions\ExpressionStringBuilder.cs (1)
610
case ExpressionType.
ArrayLength
: Out("ArrayLength("); break;
System\Linq\Expressions\Interpreter\LightCompiler.cs (2)
1244
case ExpressionType.
ArrayLength
:
3054
case ExpressionType.
ArrayLength
:
System\Linq\Expressions\UnaryExpression.cs (3)
327
ExpressionType.
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>
825
return new UnaryExpression(ExpressionType.
ArrayLength
, array, typeof(int), null);