2 writes to indices
System.Activities (2)
System\Activities\Expressions\IndexerReference.cs (2)
138
this.
indices
= indices;
197
set { this.
indices
= value; }
8 references to indices
System.Activities (8)
System\Activities\Expressions\IndexerReference.cs (8)
150
Fx.Assert(this.
indices
!= null, "indices must not be null");
153
return (TItem)this.getFunc(this.operand,
indices
);
157
return (TItem)this.getMethod.Invoke(this.operand,
indices
);
165
Fx.Assert(this.
indices
!= null, "indices must not be null");
168
this.parameters = new object[this.
indices
.Length + 1];
169
for (int i = 0; i < this.
indices
.Length; i++)
171
parameters[i] = this.
indices
[i];
196
get { return this.
indices
; }