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

◆ IsBidiControlCharacter()

static bool System.UriHelper.IsBidiControlCharacter ( char ch)
inlinestaticpackage

Definition at line 476 of file UriHelper.cs.

477 {
478 if (ch != '\u200e' && ch != '\u200f' && ch != '\u202a' && ch != '\u202b' && ch != '\u202c' && ch != '\u202d')
479 {
480 return ch == '\u202e';
481 }
482 return true;
483 }

References System.ch.

Referenced by System.UriHelper.StripBidiControlCharacters().