使用 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
相關用法
- C# int.TryParse用法及代碼示例
- C# Decimal.FromOACurrency()用法及代碼示例
- C# Int32.CompareTo用法及代碼示例
- C# UInt64.ToString()用法及代碼示例
- C# Type.GetTypeHandle()用法及代碼示例
- C# Uri.IsBaseOf()用法及代碼示例
- C# String.ToUpperInvariant用法及代碼示例
- C# File.Copy(String, String, Boolean)用法及代碼示例
- C# Uri.IsHexEncoding()用法及代碼示例
- C# Char.TryParse()用法及代碼示例
- C# Math Cosh()用法及代碼示例
- C# Int64.Equals用法及代碼示例
- C# Convert.ToInt16(String, IFormatProvider)用法及代碼示例
- C# DateTimeOffset.FromUnixTimeMilliseconds()用法及代碼示例
- C# StringBuilder.ToString用法及代碼示例
- C# DateTimeOffset.AddMinutes()用法及代碼示例
- C# MathF.Log10()用法及代碼示例
- C# TimeSpan Subtract()用法及代碼示例
- C# Math.Floor()用法及代碼示例
- C# Type.HasElementTypeImpl()用法及代碼示例
注:本文由純淨天空篩選整理自Sai Subramanyam大神的英文原創作品 C# int.Parse Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。