1 write to items
System.Data.Linq (1)
Types.cs (1)
741
Array.Resize(ref
items
, count == 0 ? 4 : count * 2);
17 references to items
System.Data.Linq (17)
Types.cs (17)
672
get { return
items
; }
676
get { return
items
[index]; }
677
set {
items
[index] = value; }
681
if (
items
== null ||
items
.Length == count) GrowItems();
682
items
[count] = item;
692
e.items =
items
;
706
if (
items
[i] == item) return i;
712
if (
items
== null ||
items
.Length == count) GrowItems();
713
if (index < count) Array.Copy(
items
, index,
items
, index + 1, count - index);
714
items
[index] = item;
722
if (
items
[i] == item) return i;
736
if (index < count) Array.Copy(
items
, index + 1,
items
, index, count - index);
737
items
[count] = default(T);