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)
37return _list.Count; 44return ((ICollection)_list).IsSynchronized; 60return ((ICollection)_list).SyncRoot; 67return _list[index]; 95_list.Insert(index, child); 126foreach (TreeNode node in _list) { 130_list.Clear(); 146return _list.Contains(c); 172return _list.IndexOf(value); 181int index = _list.IndexOf(value); 189TreeNode node = _list[index]; 217_list.RemoveAt(index); 255_list.CopyTo((TreeNode[])array, index);