3 writes to List
WindowsBase (3)
Shared\MS\Utility\ItemList.cs (3)
15List = new T[capacity]; 112List = newList; 117List = new T[Math.Max(delta, 2)];
22 references to List
WindowsBase (22)
Base\System\Windows\DependencyObject.cs (4)
2251DependencyProperty dp = DependencyProperty.RegisteredPropertyList.List[_effectiveValues[i].PropertyIndex]; 2537DependencyProperty.RegisteredPropertyList.List[effectiveValues[i].PropertyIndex]; 2687DependencyProperty dp = DependencyProperty.RegisteredPropertyList.List[_effectiveValues[i].PropertyIndex]; 3073DependencyProperty dp = DependencyProperty.RegisteredPropertyList.List[entry.PropertyIndex];
Base\System\Windows\DependencyProperty.cs (1)
1265foreach(DependencyProperty dp in RegisteredPropertyList.List) {
Base\System\Windows\Freezable.cs (2)
475DependencyProperty.RegisteredPropertyList.List[effectiveValues[i].PropertyIndex]; 924DependencyProperty dp = DependencyProperty.RegisteredPropertyList.List[srcEntry.PropertyIndex];
Shared\MS\Utility\ItemList.cs (15)
48if (List[i].Equals(value)) 74List[index] = item; 83List[index] = item; 106if (List != null) 108if ((Count + delta) > List.Length) 110T[] newList = new T[Math.Max(List.Length * 2, Count + delta)]; 111List.CopyTo(newList, 0); 138if (List != null) 140Array.Sort(List, 0, Count); 148destinationList.Add(ref List[i]); 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);