toString Summary Returns a string representation of the Boolean value. Usage public override string toString() Returns A string representation of the Boolean value. Description Returns a string representation of the Boolean value. Examples Basic Usage 1234567import System; bool b1 = true;Console.log(b1.toString()); bool b2 = false;Console.log(b2.toString()); Share HTML | BBCode | Direct Link