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

◆ IsGenDelim()

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

Definition at line 435 of file UriHelper.cs.

436 {
437 if (ch != ':' && ch != '/' && ch != '?' && ch != '#' && ch != '[' && ch != ']')
438 {
439 return ch == '@';
440 }
441 return true;
442 }

References System.ch.

Referenced by System.IriHelper.CheckIsReserved().