3 writes to List
ReachFramework (3)
Serialization\Manager\ReachSerializationUtils.cs (3)
37List = new System.Windows.DependencyProperty[capacity]; 180List = newList; 185List = new System.Windows.DependencyProperty[Math.Max(delta, 2)];
16 references to List
ReachFramework (16)
Serialization\Manager\MetroSerializationManager.cs (1)
808DependencyProperty dependencyProperty = list.List[indexInDependencyPropertyList];
Serialization\Manager\ReachSerializationUtils.cs (15)
82if (List[i].Equals(value)) 118List[index] = item; 133List[index] = item; 174if (List != null) 176if ((Count + delta) > List.Length) 178System.Windows.DependencyProperty[] newList = new System.Windows.DependencyProperty[Math.Max(List.Length * 2, Count + delta)]; 179List.CopyTo(newList, 0); 209if (List != null) 211Array.Sort(List, 0, Count); 223destinationList.Add(ref List[i]); 233Array.Copy(List, 0, array, 0, Count); 254Array.Clear(List, 0, Count); 269Array.Copy(List, index + 1, List, index, (Count - index - 1)); 272Array.Clear(List, Count - 1, 1);