6 writes to Count
WindowsBase (6)
Shared\MS\Utility\ItemList.cs (6)
16Count = 0; 75Count++; 84Count++; 130Count += delta; 175Count = 0; 189Count--;
14 references to Count
WindowsBase (14)
Base\System\Windows\DependencyProperty.cs (1)
1254return RegisteredPropertyList.Count;
Shared\MS\Utility\ItemList.cs (13)
30int delta = (index + 1) - Count; 39return (index >= 0 && index < Count); 46for (int i = 0; i < Count; i++) 108if ((Count + delta) > List.Length) 110T[] newList = new T[Math.Max(List.Length * 2, Count + delta)]; 123int index = Count; 140Array.Sort(List, 0, Count); 146for (int i = 0; i < Count; i++) 154T[] array = new T[Count]; 155Array.Copy(List, 0, array, 0, Count); 173Array.Clear(List, 0, Count); 184Array.Copy(List, index + 1, List, index, (Count - index - 1)); 187Array.Clear(List, Count - 1, 1);