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

◆ IsGBTwoByteTrailing()

bool System.Text.GB18030Encoding.IsGBTwoByteTrailing ( short ch)
inlinepackage

Definition at line 260 of file GB18030Encoding.cs.

261 {
262 if (ch < 64 || ch > 126)
263 {
264 if (ch >= 128)
265 {
266 return ch <= 254;
267 }
268 return false;
269 }
270 return true;
271 }

References System.ch.

Referenced by System.Text.GB18030Encoding.GetChars().