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.