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

◆ IsXmlSurrogatePair()

static bool System.Xml.XmlConvert.IsXmlSurrogatePair ( char lowChar,
char highChar )
inlinestatic

Definition at line 488 of file XmlConvert.cs.

489 {
490 if (XmlCharType.IsHighSurrogate(highChar))
491 {
492 return XmlCharType.IsLowSurrogate(lowChar);
493 }
494 return false;
495 }

References System.Xml.Dictionary, System.Xml.XmlCharType.IsHighSurrogate(), and System.Xml.XmlCharType.IsLowSurrogate().