C# int.TryParse 方法

csharpprogrammingserver side programming

使用 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


相关文章