C# Boolean ToString()

Description

Boolean ToString() converts the value of this instance to its equivalent string representation (either "True" or "False").

Syntax

Boolean.ToString() has the following syntax.


public override string ToString()

Returns

Boolean.ToString() method returns TrueString if the value of this instance is true, or FalseString if the value of this instance is false.

Example

The following example illustrates the ToString method.


using System;/*from w  w w. j a  v a 2 s  .  c  o  m*/
public class MainClass {
  public static void Main(String[] argv){  
    bool raining = false;
    bool busLate = true;
    
    Console.WriteLine("raining.ToString() returns {0}", raining);
    Console.WriteLine("busLate.ToString() returns {0}", busLate);
  }
}
    

The code above generates the following result.





















Home »
  C# Tutorial »
    System »




Array
BitConverter
Boolean
Byte
Char
Console
ConsoleKeyInfo
Convert
DateTime
DateTimeOffset
Decimal
Double
Enum
Environment
Exception
Guid
Int16
Int32
Int64
Math
OperatingSystem
Random
SByte
Single
String
StringComparer
TimeSpan
TimeZone
TimeZoneInfo
Tuple
Tuple
Tuple
Type
UInt16
UInt32
UInt64
Uri
Version