3 writes to List
ReachFramework (3)
Serialization\Manager\ReachSerializationUtils.cs (3)
26List = new System.Windows.DependencyProperty[capacity]; 169List = newList; 174List = new System.Windows.DependencyProperty[Math.Max(delta, 2)];
16 references to List
ReachFramework (16)
Serialization\Manager\MetroSerializationManager.cs (1)
800DependencyProperty dependencyProperty = list.List[indexInDependencyPropertyList];
Serialization\Manager\ReachSerializationUtils.cs (15)
71if (List[i].Equals(value)) 107List[index] = item; 122List[index] = item; 163if (List != null) 165if ((Count + delta) > List.Length) 167System.Windows.DependencyProperty[] newList = new System.Windows.DependencyProperty[Math.Max(List.Length * 2, Count + delta)]; 168List.CopyTo(newList, 0); 198if (List != null) 200Array.Sort(List, 0, Count); 212destinationList.Add(ref List[i]); 222Array.Copy(List, 0, array, 0, Count); 243Array.Clear(List, 0, Count); 258Array.Copy(List, index + 1, List, index, (Count - index - 1)); 261Array.Clear(List, Count - 1, 1);