Advertisement
kyrathasoft

is non-alphanumeric character

May 21st, 2019
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.19 KB | None | 0 0
  1.         public static bool IsNonAlphaNumChar(char c) {
  2.             if (Char.IsDigit(c)) { return false; }
  3.             if (Char.IsLetter(c)) { return false; }
  4.             return true;
  5.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement