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

◆ ToHexString() [1/3]

static string System.Convert.ToHexString ( byte[] inArray)
inlinestatic

Definition at line 3159 of file Convert.cs.

3160 {
3161 if (inArray == null)
3162 {
3163 throw new ArgumentNullException("inArray");
3164 }
3165 return ToHexString(new ReadOnlySpan<byte>(inArray));
3166 }
static string ToHexString(byte[] inArray)
Definition Convert.cs:3159

References System.Convert.ToHexString().

Referenced by System.Xml.BinHexEncoder.Encode(), Internal.Cryptography.AsnFormatter.Format(), System.Convert.ToHexString(), System.Convert.ToHexString(), Internal.Cryptography.Helpers.ToHexStringUpper(), and System.Net.NetworkInformation.PhysicalAddress.ToString().