4 writes to count
System.Collections (4)
System\Collections\Generic\LinkedList.cs (4)
185
count
= 0;
384
count
++;
394
count
++;
416
count
--;
6 references to count
System.Collections (6)
System\Collections\Generic\LinkedList.cs (6)
51
get { return
count
; }
335
info.AddValue(CountName,
count
); // this is the length of the bucket array.
337
if (
count
!= 0)
339
T[] array = new T[
count
];
389
Debug.Assert(head == null &&
count
== 0, "LinkedList must be empty when this method is called!");
403
Debug.Assert(
count
== 1 && head == node, "this should only be true for a list with only one node");