3 writes to _count
System.Linq.Parallel (3)
System\Linq\Parallel\Utils\GrowingArray.cs (3)
27
_count
= 0;
51
_array[
_count
++] = element;
73
_count
+= otherCount;
5 references to _count
System.Linq.Parallel (5)
System\Linq\Parallel\Utils\GrowingArray.cs (5)
42
get { return
_count
; }
47
if (
_count
>= _array.Length)
66
if (
_count
+ otherCount > _array.Length)
68
GrowArray(
_count
+ otherCount);
72
Array.Copy(otherArray, 0, _array,
_count
, otherCount);