Leer en inglés

Compartir a través de


UInt32.MaxValue Campo

Definición

Representa el mayor valor posible de UInt32. Este campo es constante.

C#
public const uint MaxValue = 4294967295;

Valor de campo

Value = 4294967295

Ejemplos

En el ejemplo siguiente se usan los MinValue campos y MaxValue para comprobar que un Int64 valor está dentro del intervalo del tipo antes de UInt32 realizar una conversión de tipos. Esta comprobación impide una OverflowException en tiempo de ejecución.

C#
long longValue = long.MaxValue / 2;
uint integerValue; 

if (longValue <= uint.MaxValue && 
    longValue >= uint.MinValue)
{    
   integerValue = (uint) longValue;
   Console.WriteLine("Converted long integer value to {0:n0}.", 
                     integerValue);
}   
else
{
   uint rangeLimit;
   string relationship;
   
   if (longValue > uint.MaxValue)
   {
      rangeLimit = uint.MaxValue;
      relationship = "greater";
   }   
   else
   {
      rangeLimit = uint.MinValue;
      relationship = "less";
   }       

   Console.WriteLine("Conversion failure: {0:n0} is {1} than {2:n0}",  
                     longValue, 
                     relationship, 
                     rangeLimit);
}

Comentarios

El valor de esta constante es 4.294.967.295; es decir, 0xFFFFFFFF hexadecimal.

Se aplica a

Producto Versiones
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0

Consulte también