3 writes to tail
System.Activities (3)
System\Activities\Quack.cs (3)
97
if (++this.
tail
== this.items.Length)
99
this.
tail
= 0;
200
this.
tail
= (this.count == capacity) ? 0 : this.count;
3 references to tail
System.Activities (3)
System\Activities\Quack.cs (3)
96
this.items[this.
tail
] = item;
187
if (this.head < this.
tail
)
194
Array.Copy(this.items, 0, newArray, this.items.Length - this.head, this.
tail
);