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