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

◆ DebugEnumeratorDebugView()

Definition at line 11 of file DebugEnumeratorDebugView.cs.

12 {
13 List<T> list = new List<T>();
14 foreach (T item in enumerable)
15 {
16 list.Add(item);
17 }
18 Items = list.ToArray();
19 }

References System.item, and System.list.