System.Utilities.Validation.IsAlphaNumeric C# (CSharp) 메소드

IsAlphaNumeric() 공개 정적인 메소드

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