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

◆ ToString() [2/3]

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

Definition at line 450 of file BitConverter.cs.

451 {
452 if (value == null)
453 {
454 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.value);
455 }
456 return ToString(value, startIndex, value.Length - startIndex);
457 }

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