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