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

IsValidIPv4() 공개 정적인 메소드

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