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

◆ IsAsciiLetterOrDigit()

static bool System.Reflection.AssemblyName.IsAsciiLetterOrDigit ( char character)
inlinestaticpackage

Definition at line 555 of file AssemblyName.cs.

556 {
558 {
559 if (character >= '0')
560 {
561 return character <= '9';
562 }
563 return false;
564 }
565 return true;
566 }
static bool IsAsciiLetter(char character)

References System.Runtime.Serialization.Dictionary, and System.Reflection.AssemblyName.IsAsciiLetter().

Referenced by System.Reflection.AssemblyName.IsUnreserved().