當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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

相關用法


注:本文由純淨天空篩選整理自Karthikeya Boyini大神的英文原創作品 C# int.TryParse Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。