标签:
public static int haoping(string x)//类里边,函数名随便起,需要传入参数为string类型
{ //判断电话号码的输入情况,首位为1且总长度为11
//返回1表示填入号码正确,返回2则表示填入号码不正确
try { if (Convert.ToInt32(x.Substring(0, 1)) == 1 && x.Length == 11) { return 1; } else return 2; } catch (Exception) {
//Console.WriteLine("不能为空!"); return 2; } }
标签:
原文地址:http://www.cnblogs.com/xianshui/p/4432824.html