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

◆ Display()

static string System.Reflection.Metadata.BlobBuilder.Display ( byte[] bytes,
int length )
inlinestaticprivateinherited

Definition at line 915 of file BlobBuilder.cs.

916 {
917 if (length > 64)
918 {
919 return BitConverter.ToString(bytes, 0, 32) + "-...-" + BitConverter.ToString(bytes, length - 32, 32);
920 }
921 return BitConverter.ToString(bytes, 0, length);
922 }

References System.bytes, System.length, and System.BitConverter.ToString().

Referenced by System.Reflection.Metadata.BlobBuilder.GetDebuggerDisplay().