首页 > 代码库 > C#判断字符串是否为数字

C#判断字符串是否为数字

string i = Console.ReadLine();
            int a=0;
            if (int.TryParse(i, out a) == false) //判断是否可以转换为整型
            {
                Console.WriteLine("False");
            }
            else
            {
                Console.WriteLine("Ture");
            }
            Console.ReadLine();