Este método se utiliza para convertir el valor del objeto Byte actual en su representación de string equivalente. Hay un total de 4 métodos en la lista de sobrecarga del método Byte.ToString() de la siguiente manera:
- ToString(IFormatProvider)
- ToString(String, IFormatProvider)
- Enstringr()
- AString(String)
ToString(IFormatProvider)
Este método se utiliza para convertir el valor numérico del objeto Byte actual en su representación de string equivalente utilizando la información de formato específica de la referencia cultural especificada.
Sintaxis:
public string ToString (IFormatProvider provider);
Parámetros: este método toma un objeto de tipo IFormatProvider que proporciona información de formato específica de la referencia cultural.
Valor devuelto: este método devuelve la representación de string del valor de este objeto en el formato especificado por el parámetro del proveedor.
Los siguientes programas ilustran el uso del método Byte.ToString(IFormatProvider) :
Ejemplo 1:
// C# program to demonstrate // Byte.ToString(IFormatProvider) // Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // declaring and initializing bytevalue byte byteValue = 15; // creating and initializing // the object of CultureInfo CultureInfo provider = new CultureInfo("en-us"); // getting the value // using ToString() string value = byteValue.ToString(provider); // Display the value Console.WriteLine("value is {0} and provider is {1}", value, provider.Name); } }
value is 15 and provider is en-US
Método Byte.ToString(String, IFormatProvider)
Este método se utiliza para convertir el valor del objeto Byte actual en su representación de string equivalente utilizando el formato especificado y la información de formato específica de la referencia cultural.
Sintaxis:
public string ToString (string format, IFormatProvider provider);
Parámetros:
formato: Es una string de formato numérico estándar o personalizado.
proveedor: es un objeto que proporciona información de formato específica de la cultura.
Valor devuelto: este método devuelve la representación de string del valor de este objeto en el formato especificado por el parámetro del proveedor.
Excepciones: este método dará FormatException si el formato incluye un especificador no admitido.
Los siguientes programas ilustran el uso del método Byte.ToString(String, IFormatProvider) :
Ejemplo 1:
// C# program to demonstrate the // Byte.ToString(String, IFormatProvider) // Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // declaring and initializing bytevalue byte byteValue = 15; // creating and initializing // the object of CultureInfo CultureInfo provider = new CultureInfo("fr-FR"); // declaring and initializing format string format = "D5"; // getting the value // using ToString() string value = byteValue.ToString(format, provider); // Display the value Console.WriteLine("value is {0} and provider is {1}", value, provider.Name); } }
value is 00015 and provider is fr-FR
Ejemplo 2: para FormatException
// C# program to demonstrate the // Byte.ToString(String, IFormatProvider) // Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { try { // declaring and initializing bytevalue byte byteValue = 15; // creating and initializing // the object of CultureInfo CultureInfo provider = new CultureInfo("fr-FR"); // declaring and initializing format string format = "s5"; // getting the value // using ToString() Console.WriteLine("format is invalid"); string value = byteValue.ToString(format, provider); // Display the value Console.WriteLine("value is {0} and provider is {1}", value, provider.Name); } catch (FormatException e) { Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } }
format is invalid Exception Thrown: System.FormatException
Método Byte.ToString()
Este método se utiliza para convertir el valor del objeto Byte actual en su representación de string equivalente.
Sintaxis:
public override string ToString ();
Valor devuelto: este método devuelve la representación de string del valor de este objeto, que consta de una secuencia de dígitos que van del 0 al 9 sin ceros a la izquierda.
Los siguientes programas ilustran el uso del método Byte.ToString() :
Ejemplo 1:
// C# program to demonstrate // Byte.ToString() Method using System; using System.Globalization; class GFG { // Main Method public static void Main() { // declaring and initializing bytevalue byte byteValue = 15; // getting the value // using ToString() string value = byteValue.ToString(); // Display the value Console.WriteLine("value is {0} ", value); } }
value is 15
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