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

◆ FromBinHexString() [2/2]

static byte[] System.Xml.XmlConvert.FromBinHexString ( string s,
bool allowOddCount )
inlinestaticpackage

Definition at line 264 of file XmlConvert.cs.

265 {
266 if (s == null)
267 {
268 throw new ArgumentNullException("s");
269 }
270 return BinHexDecoder.Decode(s.ToCharArray(), allowOddCount);
271 }

References System.Xml.BinHexDecoder.Decode(), System.Xml.Dictionary, and System.s.