Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
BlockingCollectionDebugView.cs
Go to the documentation of this file.
3
5
6internal sealed class BlockingCollectionDebugView<T>
7{
9
10 [UnsupportedOSPlatform("browser")]
11 [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)]
12 public T[] Items => _blockingCollection.ToArray();
13
15 {
16 if (collection == null)
17 {
18 throw new ArgumentNullException("collection");
19 }
21 }
22}