Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ImmutableEnumerableDebuggerProxy.cs
Go to the documentation of this file.
3using System.Linq;
4
6
8{
9 private readonly IEnumerable<T> _enumerable;
10
11 private T[] _cachedContents;
12
14 public T[] Contents => _cachedContents ?? (_cachedContents = _enumerable.ToArray());
15
21}