Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
UnicodeUtility.cs
Go to the documentation of this file.
2
3namespace System.Text;
4
5internal static class UnicodeUtility
6{
7 [MethodImpl(MethodImplOptions.AggressiveInlining)]
8 public static bool IsAsciiCodePoint(uint value)
9 {
10 return value <= 127;
11 }
12
13 [MethodImpl(MethodImplOptions.AggressiveInlining)]
14 public static bool IsBmpCodePoint(uint value)
15 {
16 return value <= 65535;
17 }
18}
static bool IsAsciiCodePoint(uint value)
static bool IsBmpCodePoint(uint value)