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

◆ Items [2/2]

Definition at line 41 of file SystemCore_EnumerableDebugView.cs.

42 {
43 get
44 {
46 foreach (object item in _enumerable)
47 {
48 list.Add(item);
49 }
50 if (list.Count == 0)
51 {
52 throw new SystemCore_EnumerableDebugViewEmptyException();
53 }
54 return list.ToArray();
55 }
56 }