2 writes to count
System.Data.SqlXml (2)
System\Xml\Xsl\QIL\QilList.cs (2)
120this.count++; 131this.count--;
16 references to count
System.Data.SqlXml (16)
System\Xml\Xsl\QIL\QilList.cs (16)
49if (this.count > 0) { 51for (int i = 0; i < this.count; i++) 58for (int i = 1; i < this.count; i++) 86get { return this.count; } 91if (index >= 0 && index < this.count) 97if (index >= 0 && index < this.count) 108if (index < 0 || index > this.count) 111if (this.count == this.members.Length) { 112QilNode[] membersNew = new QilNode[this.count * 2]; 113Array.Copy(this.members, membersNew, this.count); 117if (index < this.count) 118Array.Copy(this.members, index, this.members, index + 1, this.count - index); 128if (index < 0 || index >= this.count) 132if (index < this.count) 133Array.Copy(this.members, index + 1, this.members, index, this.count - index); 135this.members[this.count] = null;