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

◆ IsAsciiLetter()

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

Definition at line 542 of file AssemblyName.cs.

543 {
544 if (character < 'a' || character > 'z')
545 {
546 if (character >= 'A')
547 {
548 return character <= 'Z';
549 }
550 return false;
551 }
552 return true;
553 }

References System.Runtime.Serialization.Dictionary.

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