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

◆ IsHighSurrogateCodePoint()

static bool System.Text.UnicodeUtility.IsHighSurrogateCodePoint ( uint value)
inlinestatic

Definition at line 55 of file UnicodeUtility.cs.

56 {
57 return IsInRangeInclusive(value, 55296u, 56319u);
58 }
static bool IsInRangeInclusive(uint value, uint lowerBound, uint upperBound)

References System.Text.UnicodeUtility.IsInRangeInclusive(), and System.value.

Referenced by System.Text.Rune.ReadFirstRuneFromUtf16Buffer(), and System.Text.Rune.ReadRuneFromString().