Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
IsAsciiLetterOrDigit()
static
bool
System.UriHelper.IsAsciiLetterOrDigit
(
char
character
)
inline
static
package
Definition at line
462
of file
UriHelper.cs
.
463
{
464
if
(((uint)(character - 65) & -33) >= 26)
465
{
466
return
(uint)(character - 48) < 10u;
467
}
468
return
true
;
469
}
Referenced by
System.Uri.CheckSchemeName()
.
System
UriHelper
Generated by
1.10.0