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

IsValidIPv4() public static method

Tests whether input string is a valid phone number.
public static IsValidIPv4 ( string IPv4 ) : bool
IPv4 string Phone number to test.
return bool
        public static bool IsValidIPv4(string IPv4)
        {
            return MatchIPv4.IsMatch(IPv4);
        }