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

◆ FromHexString() [2/2]

static byte[] System.Convert.FromHexString ( string s)
inlinestatic

Definition at line 3132 of file Convert.cs.

3133 {
3134 if (s == null)
3135 {
3136 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.s);
3137 }
3138 return FromHexString(s.AsSpan());
3139 }
static byte[] FromHexString(string s)
Definition Convert.cs:3132

References System.Convert.FromHexString(), System.s, and System.ThrowHelper.ThrowArgumentNullException().

Referenced by System.Convert.FromHexString().