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