Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Count

int ICollection. System.Collections.ListDictionaryInternal.NodeKeyValueCollection.Count
getprivate

Implements System.Collections.ICollection.

Definition at line 166 of file ListDictionaryInternal.cs.

167 {
168 get
169 {
170 int num = 0;
171 for (DictionaryNode dictionaryNode = list.head; dictionaryNode != null; dictionaryNode = dictionaryNode.next)
172 {
173 num++;
174 }
175 return num;
176 }
177 }