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

◆ Count

int System.Collections.DictionaryBase.Count
get

Implements System.Collections.ICollection.

Definition at line 21 of file DictionaryBase.cs.

22 {
23 get
24 {
25 if (_hashtable != null)
26 {
27 return _hashtable.Count;
28 }
29 return 0;
30 }
31 }