El campo o propiedad MaxValue de Int32 Struct se usa para representar el valor máximo de Int32. 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 2147483647 . Su valor hexadecimal es 0x7FFFFFFF . Se utiliza para evitar OverflowException al convertir a un valor Int32 .
Sintaxis:
public const int MaxValue = 2147483647;
Valor devuelto: este campo siempre devuelve 2147483647.
Ejemplo:
// C# program to illustrate the // Int32.MaxValue field using System; class GFG { // Main Method static public void Main() { // display the Maximum value // of Int32 struct Console.WriteLine("Maximum Value is: "+ Int32.MaxValue); // Taking an array of long i.e Int64 data type long[]num = {347, 49458, 345348534650436656}; // 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:
Maximum Value is: 2147483647 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