El método Int16.Parse(String) se utiliza para convertir la representación de string de un número en su equivalente entero de 16 bits con signo.
Sintaxis:
public static short Parse (string str);
Aquí, str es una string que contiene un número para convertir. El formato de str será [espacio en blanco opcional][signo opcional]dígitos[espacio en blanco opcional] .
Valor devuelto: es un entero de 16 bits con signo equivalente al número contenido en str .
Excepciones:
- ArgumentNullException : si str es nulo.
- FormatException : si str no está en el formato correcto.
- OverflowException : si str representa un número menor que MinValue o mayor que MaxValue .
Los siguientes programas ilustran el uso del método mencionado anteriormente:
Ejemplo 1:
// C# program to demonstrate // Int16.Parse(String) Method using System; class GFG { // Main Method public static void Main() { // passing different values // to the method to check checkParse("14321"); checkParse("15,784"); checkParse("-4589"); checkParse(" 456"); } // Defining checkParse method public static void checkParse(string input) { try { // declaring Int16 variable short val; // getting parsed value val = Int16.Parse(input); Console.WriteLine("'{0}' parsed as {1}", input, val); } catch (FormatException) { Console.WriteLine("Can't Parsed '{0}'", input); } } }
Producción:
'14321' parsed as 14321 Can't Parsed '15,784' '-4589' parsed as -4589 ' 456' parsed as 456
Ejemplo 2: para ArgumentNullException
// C# program to demonstrate // Int16.Parse(String) Method // for ArgumentNullException using System; class GFG { // Main Method public static void Main() { try { // passing null value as a input checkParse(null); } catch (ArgumentNullException e) { Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } catch (FormatException e) { Console.Write("Exception Thrown: "); Console.Write("{0}", e.GetType(), e.Message); } } // Defining checkparse method public static void checkParse(string input) { // declaring Int16 variable short val; // getting parsed value val = Int16.Parse(input); Console.WriteLine("'{0}' parsed as {1}", input, val); } }
Producción:
Exception Thrown: System.ArgumentNullException
Referencia:
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA