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