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