Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SpanDebugView.cs
Go to the documentation of this file.
2
3namespace System;
4
5internal sealed class SpanDebugView<T>
6{
7 private readonly T[] _array;
8
9 [DebuggerBrowsable(DebuggerBrowsableState.RootHidden)]
10 public T[] Items => _array;
11
13 {
14 _array = span.ToArray();
15 }
16
18 {
19 _array = span.ToArray();
20 }
21}
SpanDebugView(ReadOnlySpan< T > span)
readonly T[] _array
SpanDebugView(Span< T > span)
T[] ToArray()
Definition Span.cs:291