Пример #1
0
 /// <summary>
 /// String Is Fixed Telephone Number Or A Legal Mobile Phone Number
 /// </summary>
 /// <param name="str">Check String</param>
 /// <returns>returns String Is Fixed Telephone Number Or A Legal Mobile Phone Number</returns>
 public static bool IsPhone(this string str)
 {
     return(RegExp.IsPhone(str));
 }