Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ DebuggerDisplay

string System.Collections.Immutable.ImmutableArray< T >.DebuggerDisplay
getprivate

Definition at line 907 of file ImmutableArray.cs.

908 {
909 get
910 {
912 if (!immutableArray.IsDefault)
913 {
914 return $"Length = {immutableArray.Length}";
915 }
916 return "Uninitialized";
917 }
918 }