3 writes to stack
System.Xml (3)
System\Xml\HWStack.cs (3)
26
this.
stack
= new Object[GrowthRate];
40
this.
stack
= newstack;
94
this.
stack
= stack;
8 references to stack
System.Xml (8)
System\Xml\HWStack.cs (8)
38
System.Array.Copy(this.
stack
, 0, newstack, 0, this.used);
43
return this.
stack
[this.used++];
49
Object result = this.
stack
[this.used];
56
return this.used > 0 ? this.
stack
[this.used - 1] : null;
61
this.
stack
[this.used - 1] = o;
68
Object result = this.
stack
[index];
77
this.
stack
[index] = value;
101
return new HWStack((object[]) this.
stack
.Clone(), this.growthRate, this.used, this.size);