C#int.Parse方法

使用C#中的int.Parse方法将数字的字符串表示形式转换为整数。如果无法转换字符串,则int.Parse方法将返回异常

假设您有一个数字的字符串表示形式。

string myStr = "200";

现在要将其转换为整数,请使用int.Parse()。它将被转换。

int.Parse(myStr);

示例

using System.IO;
using System;
class Program {
   static void Main() {
      int res;
      string myStr = "200";
      res = int.Parse(myStr);
      Console.WriteLine("String is a numeric representation: "+res);
   }
}

输出结果

String is a numeric representation: 200