Boolean.ToString(IFormatProvider)方法用于将当前实例的值转换为其等效的字符串表示形式,即“ True ”或“ False ”
句法:
public string ToString (IFormatProvider provider);
参数:此方法采用IFormatProvider类型的对象,该对象保留。
返回值:该方法返回TrueString如果此实例的值是true,或者FalseString如果此实例的值是假的。
例子:
// C# program to demonstrate
// Boolean.ToString(IFormatProvider)
// Method
using System;
using System.Globalization;
class GFG {
// Main Method
public static void Main()
{
// declaring and initializing
// Boolean value
bool s1 = true;
// 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 True and provider is en-US
注意: provider参数是保留的,因为它在执行此方法时不会有任何贡献。这意味着,与大多数带有提供程序参数的方法不同,此方法不反映特定于区域性的设置。
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.boolean.tostring?view=netframework-4.8#System_Boolean_ToString_System_IFormatProvider_