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

◆ SurrogateChar() [2/2]

System.Text.SurrogateChar.SurrogateChar ( char lowChar,
char highChar )
inline

Definition at line 40 of file SurrogateChar.cs.

41 {
42 if (lowChar < '\udc00' || lowChar > '\udfff')
43 {
45 int num = lowChar;
47 }
48 if (highChar < '\ud800' || highChar > '\udbff')
49 {
51 int num = highChar;
53 }
56 }
static CultureInfo InvariantCulture
static string XmlInvalidHighSurrogate
Definition SR.cs:340
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
static string XmlInvalidLowSurrogate
Definition SR.cs:342
Definition SR.cs:7

References System.Text.SurrogateChar._highChar, System.Text.SurrogateChar._lowChar, System.Runtime.Serialization.Dictionary, System.SR.Format(), System.Globalization.CultureInfo.InvariantCulture, System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperError(), System.SR.XmlInvalidHighSurrogate, and System.SR.XmlInvalidLowSurrogate.