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

◆ ToString() [1/3]

static string System.BitConverter.ToString ( byte[] value)
inlinestatic

Definition at line 441 of file BitConverter.cs.

442 {
443 if (value == null)
444 {
445 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.value);
446 }
447 return ToString(value, 0, value.Length);
448 }

References System.ThrowHelper.ThrowArgumentNullException(), System.ToString, and System.value.