Single.ToString()方法用于将当前实例的数值转换为其等效的字符串表示形式。此方法的重载列表中有4种方法,如下所示:
- ToString(String)方法
- ToString()方法
- ToString(IFormatProvider)方法
- ToString(String,IFormatProvider)方法
在这里,我们将讨论最后两种方法。
ToString(IFormatProvider) Method
此方法用于使用指定的区域性特定格式信息将当前实例的数值转换为其等效的字符串表示形式。
用法:
public string ToString (IFormatProvider provider);
参数:此方法采用IFormatProvider类型的对象,该对象提供特定于区域性的格式设置信息。
返回值:此方法以provider参数指定的格式返回当前实例的值的字符串表示形式。
例:
// C# program to demonstrate
// Single.ToString(IFormatProvider)
// Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// declaring and initializing
// Single value
float s1 = 65465.67867f;
// creating and initializing
// the object of CultureInfo
CultureInfo provider = new CultureInfo("en-us");
// Using the method
string str = s1.ToString(provider);
// Display the value
Console.WriteLine("The Value is {0} and provider is {1}",
str, provider.Name);
}
}
输出:
The Value is 65465.68 and provider is en-US
Single.ToString(String, IFormatProvider) Method
此方法用于使用指定的格式和特定于区域性的格式设置信息将此实例的数值转换为其等效的字符串表示形式。
用法:
public string ToString (string format, IFormatProvider provider);
参数:
-
format:它是标准或自定义数字格式的字符串。
provider:它是提供区域性特定格式信息的对象。
返回值:此方法返回由format和provider参数指定的当前实例的字符串表示形式。
例:
// C# program to demonstrate the
// Single.ToString(String, IFormatProvider)
// Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// declaring and intializing Single value
float s1 = Single.MaxValue;
// creating and initializing
// the object of CultureInfo
CultureInfo provider = new CultureInfo("es-ES");
// declaring and intializing format
string format = "N";
// using the method
string str = s1.ToString(format, provider);
// Displaying the details
Console.WriteLine("The value is {0}", str);
Console.WriteLine("The Format is {0}", format);
Console.WriteLine("The Provider is {0}", provider.Name);
}
}
输出:
The value is 340.282.300.000.000.000.000.000.000.000.000.000.000,00 The Format is N The Provider is es-ES
参考:
相关用法
- C# Dictionary.Add()用法及代码示例
- C# Math.Max()用法及代码示例
- C# Math.Min()用法及代码示例
- C# Decimal.Add()用法及代码示例
- C# Math.Tan()用法及代码示例
- C# Math.Cos()用法及代码示例
- C# Math.Sin()用法及代码示例
- C# SortedDictionary.Add()用法及代码示例
- C# Math.Abs()方法用法及代码示例
- C# String.Contains()用法及代码示例
- C# Math.Exp()用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 Single.ToString() Method in C# | Set – 2。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。