UInt64.MinValue Campo

Definição

Representa o menor valor possível de UInt64. Este campo é constante.

public const ulong MinValue = 0;

Valor do campo

Value = 0

Exemplos

O exemplo a seguir usa os MinValue campos e MaxValue para verificar se um Double valor está dentro do intervalo do tipo antes de UInt64 executar uma conversão de tipo. Isso impede um em tempo de execução OverflowException .

double decimalValue = -1.5;
ulong integerValue; 

// Discard fractional portion of Double value
double decimalInteger = Math.Floor(decimalValue);

if (decimalInteger <= ulong.MaxValue && 
    decimalInteger >= ulong.MinValue)
{    
   integerValue = (ulong) decimalValue;
   Console.WriteLine("Converted {0} to {1}.", decimalValue, integerValue);
}   
else
{
   ulong rangeLimit;
   string relationship;
   
   if (decimalInteger > ulong.MaxValue)
   {
      rangeLimit = ulong.MaxValue;
      relationship = "greater";
   }   
   else
   {
      rangeLimit = ulong.MinValue;
      relationship = "less";
   }       

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

Comentários

O valor dessa constante é 0.

Aplica-se a

Confira também