4 writes to size
System.Data.SqlXml (4)
System\Xml\Xsl\Runtime\XmlQuerySequence.cs (4)
85this.size = size; 94this.size = 1; 335this.size = 0; 344this.items[this.size++] = value;
11 references to size
System.Data.SqlXml (11)
System\Xml\Xsl\Runtime\XmlQuerySequence.cs (11)
130get { return this.size; } 151if (this.size == 0) 154Array.Copy(this.items, 0, array, index, this.size); 229if (index >= this.size) 296if (index >= this.size) 309return (index < this.size) ? index : -1; 352if (this.size <= 1) 355Debug.Assert(keys.Length >= this.size, "Number of keys must be >= number of items."); 356Array.Sort(keys, this.items, 0, this.size); 366if (this.size >= this.items.Length) { 367cacheNew = new T[this.size * 2];