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