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

IsValidZIP5() public static method

Tests whether input string is a valid 5 digit ZIP Code.
public static IsValidZIP5 ( string ZIP5 ) : bool
ZIP5 string 5 digit ZIP Code to test.
return bool
        public static bool IsValidZIP5(string ZIP5)
        {
            return MatchZIP5.IsMatch(ZIP5);
        }