C# int.TryParse 方法
使用 C# 中的int.TryParse()方法将数字的字符串表示形式转换为整数。如果字符串无法转换,那么int.TryParse()方法返回 false,即布尔值。
假设你有数字的字符串表示形式。
string myStr = "12";
现在使用int.TryParse()将其转换为整数。它将得到转换且返回 True。
int.TryParse(myStr, out a);
示例
using System.IO; using System; class Program { static void Main() { bool res; int a; string myStr = "12"; res = int.TryParse(myStr, out a); Console.WriteLine("String is a numeric representation: "+res); } }
输出
String is a numeric representation: True
广告