1 write to indexFunctions
System.Activities (1)
System\Activities\ExpressionUtilities.cs (1)
668
this.
indexFunctions
= new Func<ActivityContext, int>[callExpression.Arguments.Count];
4 references to indexFunctions
System.Activities (4)
System\Activities\ExpressionUtilities.cs (4)
669
for (int i = 0; i < this.
indexFunctions
.Length; i++)
671
this.
indexFunctions
[i] = ExpressionUtilities.Compile<int>(
678
int[] indices = new int[this.
indexFunctions
.Length];
681
indices[i] = this.
indexFunctions
[i](context);