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

◆ IsAsciiLetter()

static bool System.ComponentModel.MaskedTextProvider.IsAsciiLetter ( char c)
inlinestaticprivate

Definition at line 893 of file MaskedTextProvider.cs.

894 {
895 if (c < 'A' || c > 'Z')
896 {
897 if (c >= 'a')
898 {
899 return c <= 'z';
900 }
901 return false;
902 }
903 return true;
904 }

Referenced by System.ComponentModel.MaskedTextProvider.TestChar().