Boolean.ToString Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Converts the value of this instance to its equivalent string representation (either "True" or "False").
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.StringTrueString if the value of this instance is true, or FalseString if the value of this instance is false.
This method returns the constants "True" or "False". Note that XML is case-sensitive, and that the XML specification recognizes "true" and "false" as the valid set of Boolean values. If the string returned by the ToString method is to be written to an XML file, its String.ToLower method should be called first to convert it to lowercase.