5 writes to items
System.Data.Services.Client (5)
System\Data\Services\Client\ArraySet.cs (5)
36
this.
items
= new T[capacity];
72
Array.Resize<T>(ref this.
items
, Math.Min(Math.Max(index, 16), Int32.MaxValue / 2) * 2);
176
this.
items
= null;
180
Array.Resize(ref this.
items
, array.Length / 2);
207
Array.Resize(ref this.
items
, this.count);
10 references to items
System.Data.Services.Client (10)
System\Data\Services\Client\ArraySet.cs (10)
54
return this.
items
[index];
70
if ((null == this.
items
) || (index == this.
items
.Length))
75
this.
items
[index] = item;
101
yield return this.
items
[i];
131
T[] array = this.
items
;
156
item = this.
items
[index];
169
T[] array = this.
items
;
195
if (null != this.
items
)
200
Array.Sort<T>(this.
items
, 0, this.count, scomp);