El método Double.ToString() se utiliza para convertir el valor numérico de la instancia actual en su representación de string equivalente. Hay 4 métodos en la lista de sobrecarga de este método de la siguiente manera:
- Método ToString(String)
- Método ToString()
- Método ToString(IFormatProvider)
- Método ToString(String, IFormatProvider)
Aquí, discutiremos los dos primeros métodos.
Método ToString(String)
Este método se usa para convertir el valor numérico de la instancia actual a su representación de string equivalente, usando el formato especificado.
Sintaxis: string pública ToString (formato de string);
Aquí, toma una string de formato numérico.Valor devuelto: este método devuelve la representación de string del valor de la instancia actual según lo especificado por format .
Excepciones: este método arroja FormatException si el formato no es válido.
Ejemplo 1:
// C# program to demonstrate the // Double.ToString(String) Method using System; class GFG { // Main Method public static void Main() { try { // Declaring and initializing value double value = 16325.62d; // Declaring and initializing format string s = "E04"; // using the method string str = value.ToString(s); // Display the value Console.WriteLine("String value is {0}", str); } catch (FormatException e) { Console.WriteLine("Format is invalid."); Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } }
String value is 1.6326E+004
Ejemplo 2: para FormatException
// C# program to demonstrate the // Double.ToString(String) Method using System; class GFG { // Main Method public static void Main() { try { // Declaring and initializing value double value = 16325.62d; // Declaring and initializing format string s = "a"; // using the method string str = value.ToString(s); // Display the value Console.WriteLine("String value is {0}", str); } catch (FormatException e) { Console.WriteLine("Format is invalid."); Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } }
Format is invalid. Exception Thrown: System.FormatException
Método ToString()
Este método se utiliza para convertir el valor numérico de la instancia actual en su representación de string equivalente.
Sintaxis: public override string ToString();
Valor devuelto: este método devuelve una string que representa el valor de esta instancia.
Los siguientes programas ilustran el uso del método Double.ToString() :
Ejemplo 1:
// C# program to demonstrate the // Double.ToString() Method using System; class GFG { // Main Method public static void Main() { // Declaring and initializing value double value = 7922816251426433759354.39503305d; // using ToString() method string round = value.ToString(); // Display the value Console.WriteLine("String value is {0}", round); } }
String value is 7.92281625142643E+21
Ejemplo 2:
// C# program to demonstrate the // Double.ToString() Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // calling get() method get(20.3495d); get(30.5945994d); get(40d); get(4294967295.5858d); } // defining get() method public static void get(double value) { // using ToString() method string round = value.ToString(); // Display the value Console.WriteLine("String value is {0}", round); } }
String value is 20.3495 String value is 30.5945994 String value is 40 String value is 4294967295.5858
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