Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
CollectionDebuggerProxy.cs
Go to the documentation of this file.
3
5
6internal sealed class CollectionDebuggerProxy<T>
7{
8 private readonly ICollection<T> _collection;
9
11 public T[] Items
12 {
13 get
14 {
15 T[] array = new T[_collection.Count];
17 return array;
18 }
19 }
20
25}
void CopyTo(Array array, int index)