Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DictionaryValueCollectionDebugView.cs
Go to the documentation of this file.
2
4
5internal sealed class DictionaryValueCollectionDebugView<TKey, TValue>
6{
8
10 public TValue[] Items
11 {
12 get
13 {
14 TValue[] array = new TValue[_collection.Count];
16 return array;
17 }
18 }
19
21 {
22 if (collection == null)
23 {
24 throw new ArgumentNullException("collection");
25 }
27 }
28}
void CopyTo(T[] array, int arrayIndex)