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

更新于:2020 年 6 月 23 日

19K+ 浏览次数

开启你的 职业生涯

完成课程并获得认证

开始学习
广告