El campo MaxValue de UInt32 Struct se usa para representar el valor máximo del entero sin signo de 32 bits. 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 4294967295. Su valor hexadecimal es 0xFFFFFFFF . Se usa para evitar OverflowException en tiempo de ejecución al verificar que un valor Int64 esté dentro del rango del tipo UInt32 antes de una conversión de tipo.
Sintaxis:
public const uint MaxValue = 4294967295;
Valor devuelto: este campo siempre devuelve 4294967295.
Ejemplo:
// C# program to illustrate the // UInt32.MaxValue field using System; class GFG { // Main Method static public void Main() { // display the Maximum value // of UInt32 struct Console.WriteLine("Maximum Value is: " + UInt32.MaxValue); // Taking an array of the // unsigned long integer // i.e UInt64 data type ulong[] num = {3422146, 732443, 42343535776, 2342534654756123}; // taking variable of UInt32 type uint mynum; foreach(long n in num) { if (n >= UInt32.MinValue && n <= UInt32.MaxValue) { // using the method of Convert class // to convert Int64 to UInt32 mynum = Convert.ToUInt32(n); Console.WriteLine("Conversion is Possible."); } else { Console.WriteLine("Not Possible"); } } } }
Producción:
Maximum Value is: 4294967295 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