5 writes to count
System.Activities (5)
System\Activities\Quack.cs (5)
39this.count = this.items.Length; 86++this.count; 102++this.count; 116--this.count; 163--this.count;
15 references to count
System.Activities (15)
System\Activities\Quack.cs (15)
44get { return this.count; } 51Fx.Assert(index < this.count, "Index out of range."); 61Fx.Assert(this.count > 0, "We should only call this when we have items."); 63T[] compressedItems = new T[this.count]; 65for (int i = 0; i < this.count; i++) 75if (this.count == this.items.Length) 91if (this.count == this.items.Length) 107Fx.Assert(this.count > 0, "Quack is empty"); 125for (int i = 0; i < this.count; i++) 148Fx.Assert(index < this.count, "Index out of range"); 182Fx.Assert(capacity >= this.count, "Capacity is set to a smaller value"); 185if (this.count > 0) 189Array.Copy(this.items, this.head, newArray, 0, this.count); 200this.tail = (this.count == capacity) ? 0 : this.count;