Convert.ToString Method (Boolean, IFormatProvider)

 

Converts the specified Boolean value to its equivalent string representation.

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

static member ToString : 
        value:bool *
        provider:IFormatProvider -> string

Parameters

value
Type: System.Boolean

The Boolean value to convert.

provider
Type: System.IFormatProvider

An instance of an object. This parameter is ignored.

Return Value

Type: System.String

The string representation of value.

This implementation is identical to Boolean.ToString. It returns Boolean.TrueString for true values and Boolean.FalseString for false values.

The following example converts a Boolean value to a String with the ToString method, using an IFormatProvider object that displays the type of the format provider for which it is called. The example shows that the IFormatProvider object is not referenced.

No code example is currently available or this language may not be supported.

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show: