1 write to _collection
PresentationCore (1)
Core\CSharp\System\Windows\Media3D\Visual3DCollection.cs (1)
133
_collection
= new FrugalStructList<Visual3D>();
16 references to _collection
PresentationCore (16)
Core\CSharp\System\Windows\Media3D\Visual3DCollection.cs (16)
65
_collection
.Add(value);
97
if (!
_collection
.Contains(value))
117
VerifyAPIReadWrite(
_collection
[index]);
132
FrugalStructList<Visual3D> oldCollection =
_collection
;
160
if (index < 0 || index >= array.Length || (index +
_collection
.Count) > array.Length)
165
_collection
.CopyTo(array, index);
180
if (index < 0 || index >= array.Length || (index +
_collection
.Count) > array.Length)
194
int count =
_collection
.Count;
197
array.SetValue(
_collection
[i], index + i);
424
return
_collection
[index];
439
get { return
_collection
.Count; }
508
_collection
.Insert(index, value);
531
Visual3D value =
_collection
[index];
533
_collection
.RemoveAt(index);
577
for (int i = 0; i <
_collection
.Count; i++)
579
Visual3D visual =
_collection
[i];