2 writes to _items
System.Private.Windows.Core (2)
System\Collections\Generic\ArrayBuilder.cs (2)
28
_items
= new T[Math.Min(expectedCount, MaxInitialArrayLength)];
61
Array.Resize(ref
_items
, newCapacity);
9 references to _items
System.Private.Windows.Core (9)
System\Collections\Generic\ArrayBuilder.cs (9)
35
T[] array =
_items
;
37
if ((uint)count < (uint)
_items
.Length)
50
if (
_items
.Length == _maxCount)
55
Debug.Assert(_count ==
_items
.Length);
58
Debug.Assert(
_items
.Length > 0);
59
int newCapacity = Math.Min(_maxCount, 2 *
_items
.Length);
63
_items
[size] = item;
69
Debug.Assert(_count ==
_items
.Length);
71
return
_items
;