2 writes to operandLocation
System.Activities (2)
System\Activities\Expressions\ValueTypeIndexerReference.cs (2)
131this.operandLocation = operandLocation; 190set { this.operandLocation = value; }
7 references to operandLocation
System.Activities (7)
System\Activities\Expressions\ValueTypeIndexerReference.cs (7)
143Fx.Assert(this.operandLocation != null, "operandLocation must not be null"); 147return (TItem)this.getFunc(this.operandLocation.Value, indices); 151return (TItem)this.getMethod.Invoke(this.operandLocation.Value, indices); 158Fx.Assert(this.operandLocation != null, "operandLocation must not be null"); 170object copy = this.operandLocation.Value; 181this.operandLocation.Value = (TOperand)copy; 189get { return this.operandLocation; }