1 write to _list
System.Web (1)
UI\WebControls\TreeNodeCollection.cs (1)
30
_list
= new List<TreeNode>();
13 references to _list
System.Web (13)
UI\WebControls\TreeNodeCollection.cs (13)
37
return
_list
.Count;
44
return ((ICollection)
_list
).IsSynchronized;
60
return ((ICollection)
_list
).SyncRoot;
67
return
_list
[index];
95
_list
.Insert(index, child);
126
foreach (TreeNode node in
_list
) {
130
_list
.Clear();
146
return
_list
.Contains(c);
172
return
_list
.IndexOf(value);
181
int index =
_list
.IndexOf(value);
189
TreeNode node =
_list
[index];
217
_list
.RemoveAt(index);
255
_list
.CopyTo((TreeNode[])array, index);