这段代码从控制台接收一个字符串,然后判断该字符串是否可以被转换成整型,用到int.TryParse
string i = Console.ReadLine(); int a=0; if (int.TryParse(i, out a) == false) //判断是否可以转换为整型 { Console.WriteLine("False"); } else { Console.WriteLine("Ture"); } Console.ReadLine();
这段代码从控制台接收一个字符串,然后判断该字符串是否可以被转换成整型,用到int.TryParse
string i = Console.ReadLine(); int a=0; if (int.TryParse(i, out a) == false) //判断是否可以转换为整型 { Console.WriteLine("False"); } else { Console.WriteLine("Ture"); } Console.ReadLine();