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

◆ Count

int System.Collections.Specialized.HybridDictionary.Count
get

Implements System.Collections.ICollection.

Definition at line 72 of file HybridDictionary.cs.

73 {
74 get
75 {
76 ListDictionary listDictionary = list;
77 if (hashtable != null)
78 {
79 return hashtable.Count;
80 }
81 return listDictionary?.Count ?? 0;
82 }
83 }