Este método se utiliza para convertir el valor de esta instancia a su representación de string equivalente, es decir, «Verdadero» o «Falso».
Sintaxis:
public override string ToString ();
Valor devuelto: este método devuelve «Verdadero» (el valor de la propiedad TrueString) si el valor de esta instancia es verdadero , o «Falso» (el valor de la propiedad FalseString) si el valor de esta instancia es falso .
Los siguientes programas ilustran el uso del método Boolean.ToString() :
Ejemplo 1:
C#
// C# program to demonstrate // Boolean.ToString() // Method using System; class GFG { // Main Method public static void Main() { // initializing the bool variables bool cat = false; bool dog = true; // getting the value of string property string value1 = cat.ToString(); string value2 = dog.ToString(); // print the string property Console.WriteLine("cat.ToString() returns {0}", value1); Console.WriteLine("dog.ToString() returns {0}", value2); } }
cat.ToString() returns False dog.ToString() returns True
Ejemplo 2:
C#
// C# program to demonstrate // Boolean.ToString() // Method using System; class GFG { // Main Method public static void Main() { // initializing the bool variables bool alpha = false; bool beta = true; bool gamma = true; bool delta = false; bool theta = true; // calling getValue() method getValue(alpha); getValue(beta); getValue(gamma); getValue(delta); getValue(theta); } // defining getValue() method public static void getValue(bool variable) { // getting the value of string property string value = variable.ToString(); // print the string property Console.WriteLine("{0}", value); } }
False True True False True
Nota: XML distingue entre mayúsculas y minúsculas y la especificación XML reconoce «verdadero» y «falso» como el conjunto válido de valores booleanos. Si la string devuelta por el método ToString() se va a escribir en un archivo XML, se debe llamar primero a su método String.ToLowerInvariant para convertirlo a minúsculas.
Referencia:
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA