2 instantiations of DictionaryNode
mscorlib (2)
system\collections\listdictionaryinternal.cs (2)
79
DictionaryNode newNode = new
DictionaryNode
();
166
DictionaryNode newNode = new
DictionaryNode
();
17 references to DictionaryNode
mscorlib (17)
system\collections\listdictionaryinternal.cs (17)
25
DictionaryNode
head;
40
DictionaryNode
node = head;
65
DictionaryNode
last = null;
66
DictionaryNode
node;
79
DictionaryNode
newNode = new DictionaryNode();
152
DictionaryNode
last = null;
153
DictionaryNode
node;
166
DictionaryNode
newNode = new DictionaryNode();
189
for (
DictionaryNode
node = head; node != null; node = node.next) {
211
for (
DictionaryNode
node = head; node != null; node = node.next) {
231
DictionaryNode
last = null;
232
DictionaryNode
node;
252
DictionaryNode
current;
343
for (
DictionaryNode
node = list.head; node != null; node = node.next) {
352
for (
DictionaryNode
node = list.head; node != null; node = node.next) {
378
DictionaryNode
current;
430
public
DictionaryNode
next;