Convert.ToString Method (Boolean)

 

Converts the specified Boolean value to its equivalent string representation.

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

static member ToString : 
        value:bool -> string

Parameters

value
Type: System.Boolean

The Boolean value to convert.

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 illustrates the conversion of a Boolean to a String, using ToString. It also illustrates that the string returned by the conversion equals either Boolean.TrueString or Boolean.FalseString.

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: