3 writes to List
ReachFramework (3)
Serialization\Manager\ReachSerializationUtils.cs (3)
27List = new System.Windows.DependencyProperty[capacity]; 170List = newList; 175List = new System.Windows.DependencyProperty[Math.Max(delta, 2)];
16 references to List
ReachFramework (16)
Serialization\Manager\MetroSerializationManager.cs (1)
801DependencyProperty dependencyProperty = list.List[indexInDependencyPropertyList];
Serialization\Manager\ReachSerializationUtils.cs (15)
72if (List[i].Equals(value)) 108List[index] = item; 123List[index] = item; 164if (List != null) 166if ((Count + delta) > List.Length) 168System.Windows.DependencyProperty[] newList = new System.Windows.DependencyProperty[Math.Max(List.Length * 2, Count + delta)]; 169List.CopyTo(newList, 0); 199if (List != null) 201Array.Sort(List, 0, Count); 213destinationList.Add(ref List[i]); 223Array.Copy(List, 0, array, 0, Count); 244Array.Clear(List, 0, Count); 259Array.Copy(List, index + 1, List, index, (Count - index - 1)); 262Array.Clear(List, Count - 1, 1);