El campo o propiedad MaxValue de Int16 Struct se usa para representar el valor máximo de Int16. El valor de este campo es constante significa que el usuario no puede cambiar el valor de este campo. El valor de este campo es 32767. Su valor hexadecimal es 0x7FFF . Se usa para evitar OverflowException al convertir un tipo numérico con un rango superior mayor (como UInt16 o Int32 ) a Int16 .
Sintaxis:
public const short MaxValue = 32767;
Valor devuelto: este campo siempre devuelve 32767.
Ejemplo:
// C# program to illustrate the // Int16.MaxValue field using System; class GFG { // Main Method static public void Main() { // display the Maximum value // of Int16 struct Console.WriteLine("Maximum Value is: "+ Int16.MaxValue); // Taking an array of long i.e Int64 data type long[]num = {345, -4677, -65245465445441, 44456564}; // taking variable of Int16 type short mynum; foreach(long n in num){ if(n >= Int16.MinValue && n <= Int16.MaxValue) { // using the method of Convert class // to convert Int64 to Int16 mynum = Convert.ToInt16(n); Console.WriteLine("Conversion is Possible."); } else { Console.WriteLine("Not Possible"); } } } }
Producción:
Maximum Value is: 32767 Conversion is Possible. Conversion is Possible. Not Possible Not Possible
Referencia:
Publicación traducida automáticamente
Artículo escrito por ankita_saini y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA