System.Utilities.Validation.IsAlphaNumeric C# (CSharp) Method

IsAlphaNumeric() public static method

Tests whether input string contains valid alpha-numeric characters.
public static IsAlphaNumeric ( String stringToCheck ) : bool
stringToCheck String String to test.
return bool
        public static bool IsAlphaNumeric(String stringToCheck)
        {
            return MatchAlphaNumeric.IsMatch(stringToCheck);
        }