UInt16.ToString方法用于将当前实例的数值转换为其等效的字符串表示形式。此方法的重载列表中有4种方法,如下所示:
- ToString(IFormatProvider)方法
- ToString(String,IFormatProvider)方法
- ToString()方法
- ToString(String)方法
在这里,我们将讨论最后两种方法。
ToString()方法
此方法用于将当前实例的数值转换为其等效的字符串表示形式。
句法:
public override string ToString ();
返回值:此方法返回此实例的值的字符串表示形式,该字符串表示形式由0到9之间的数字序列组成,没有符号或前导零。
例子:
// C# program to illustrate the
// UInt16.ToString() Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
Console.WriteLine("The String values are: ");
// calling the method
result(UInt16.MaxValue);
result(UInt16.MinValue);
result(10);
result(86);
}
// result() method
public static void result(ushort p)
{
// using ToString() method
string str = p.ToString();
// Display the value
Console.WriteLine("The Corresponding String "
+ "Value is: {0}",str);
}
}
输出:
The String values are:
The Corresponding String Value is: 65535
The Corresponding String Value is: 0
The Corresponding String Value is: 10
The Corresponding String Value is: 86
ToString(String)方法
此方法用于使用指定格式将当前实例的数值转换为其等效的字符串表示形式。
句法:
public string ToString (string format);
参数:此方法数字格式字符串。
返回值:该方法返回格式所指定的当前实例的值的字符串表示形式。
异常:如果format参数无效,则此方法将给出FormatException 。
例子:
// C# program to demonstrate the
// UInt16.ToString(String) Method
using System;
class GFG {
// Main Method
public static void Main()
{
try {
// Declaring and initializing value
ushort val = 84;
// Declaring and initializing format
string format = "E2";
// using the method
string result = val.ToString(format);
// Display the result
Console.WriteLine("The value of string is {0}", result);
}
catch (FormatException e)
{
Console.WriteLine("Format is invalid.");
Console.Write("Exception Thrown: ");
Console.Write("{0}", e.GetType(), e.Message);
}
}
}
输出:
The value of string is 8.40E+001
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.uint16.tostring?view=netstandard-2.1