1 implementation of ParameterCount
System.Linq.Expressions (1)
System\Linq\Expressions\LambdaExpression.cs (1)
102int IParameterProvider.ParameterCount => ParameterCount;
6 references to ParameterCount
System.Linq.Expressions (6)
System\Dynamic\Utils\ExpressionUtils.cs (1)
314if (((IParameterProvider)lambda).ParameterCount >= ushort.MaxValue)
System\Dynamic\Utils\ExpressionVisitorUtils.cs (1)
38for (int i = 0, n = nodes.ParameterCount; i < n; i++)
System\Dynamic\Utils\ListParameterProvider.cs (1)
23protected override int ElementCount => _provider.ParameterCount;
System\Linq\Expressions\Compiler\CompilerScope.cs (3)
517for (int i = 0, n = provider.ParameterCount; i < n; i++) 551public int Count => _provider.ParameterCount; 555for (int i = 0, n = _provider.ParameterCount; i < n; i++)