Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ImmutableArrayBuilderDebuggerProxy.cs
Go to the documentation of this file.
2
4
5internal sealed class ImmutableArrayBuilderDebuggerProxy<T>
6{
8
9 [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)]
10 public T[] A => _builder.ToArray();
11
13 {
14 Requires.NotNull(builder, "builder");
15 _builder = builder;
16 }
17}