La propiedad MinValue o Field of Int16 Struct se utiliza para representar el valor mínimo posible de Int16. El valor de este campo es constante significa que un usuario no puede cambiar el valor de este campo. El valor de este campo es -32768 . Su valor hexadecimal es 0x8000 . También guarda el programa de OverflowException mientras convierte el tipo numérico con un rango más bajo como Int64 e Int32 a Int16 .
Sintaxis:
public const short MinValue = -32768;
Valor devuelto: este campo siempre devuelve -32768.
Ejemplo:
// C# program to illustrate the // Int16.MinValue field using System; class GFG { // Main Method static public void Main() { // display the Minimum value of Int16 struct Console.WriteLine("Minimum Value is: "+ Int16.MinValue); // Taking an array of long i.e Int64 data type long []num = {742346, 43443, -345, -7463647}; // 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:
Minimum Value is: -32768 Not Possible Not Possible Conversion is 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