3 writes to count
System.Data.Linq (3)
Types.cs (3)
683count++; 715count++; 735count--;
14 references to count
System.Data.Linq (14)
Types.cs (14)
668get { return count; } 681if (items == null || items.Length == count) GrowItems(); 682items[count] = item; 694e.endIndex = count - 1; 705for (int i = 0; i < count; i++) { 712if (items == null || items.Length == count) GrowItems(); 713if (index < count) Array.Copy(items, index, items, index + 1, count - index); 719int i = count; 736if (index < count) Array.Copy(items, index + 1, items, index, count - index); 737items[count] = default(T); 741Array.Resize(ref items, count == 0 ? 4 : count * 2);