La propiedad MinValue o Field of Int32 Struct se utiliza para representar el valor mínimo posible de Int32. 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 -2,147,483,648 . Su valor hexadecimal es 0x80000000 .
Sintaxis:
public const int MinValue = -2147483648;
Valor devuelto: este campo siempre devuelve -2147483648.
Ejemplo:
// C# program to illustrate the // Int32.MinValue field using System; class GFG { // Main Method static public void Main() { // display the Minimum value of Int32 struct Console.WriteLine("Minimum Value is: "+ Int32.MinValue); // Taking an array of long i.e Int64 data type long []num = {346, 434443, -33445, -442343263647}; // taking variable of Int32 type int mynum; foreach(long n in num) { if(n >= Int32.MinValue && n <= Int32.MaxValue) { // using the method of Convert class mynum = Convert.ToInt32(n); Console.WriteLine("Conversion is Possible."); } else { Console.WriteLine("Not Possible"); } } } }
Producción:
Minimum Value is: -2147483648 Conversion is Possible. Conversion is 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