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