Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
DictionaryKeyCollectionDebugView.cs
Go to the documentation of this file.
2
4
5internal sealed class DictionaryKeyCollectionDebugView<TKey, TValue>
6{
7 private readonly ICollection<TKey> _collection;
8
10 public TKey[] Items
11 {
12 get
13 {
14 TKey[] array = new TKey[_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)