2 writes to indices
System.Activities (2)
System\Activities\Expressions\ValueTypeIndexerReference.cs (2)
132this.indices = indices; 197set { this.indices = value; }
8 references to indices
System.Activities (8)
System\Activities\Expressions\ValueTypeIndexerReference.cs (8)
144Fx.Assert(this.indices != null, "indices must not be null"); 147return (TItem)this.getFunc(this.operandLocation.Value, indices); 151return (TItem)this.getMethod.Invoke(this.operandLocation.Value, indices); 159Fx.Assert(this.indices != null, "indices must not be null"); 163this.parameters = new object[this.indices.Length + 1]; 164for (int i = 0; i < this.indices.Length; i++) 166parameters[i] = this.indices[i]; 196get { return this.indices; }