使用 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
相关用法
- C# int.Parse用法及代码示例
- 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()用法及代码示例
注:本文由纯净天空筛选整理自Karthikeya Boyini大神的英文原创作品 C# int.TryParse Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。