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

更新于: 02-Sep-2023

六万四千多浏览量

开启您的事业

完成课程获得认证

立即开始
广告