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