string i =
Console.ReadLine();
int a=0;
if (int.TryParse(i, out a) == false)
//判断是否可以转换为整型
{
Console.WriteLine("False");
}
else
{
Console.WriteLine("Ture");
}
Console.ReadLine();
原文地址:http://www.cnblogs.com/lihongchen/p/3768408.html