Convert.ToString Method (Boolean)
.NET Framework (current version)
Converts the specified Boolean value to its equivalent string representation.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- value
-
Type:
System.Boolean
The Boolean value to convert.
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.
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
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
Show: