Byte.MinValue Campo
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Representa o menor valor possível de um Byte. Este campo é constante.
public: System::Byte MinValue = 0;
public const byte MinValue = 0;
val mutable MinValue : byte
Public Const MinValue As Byte = 0
Valor do campo
Value = 0Exemplos
O exemplo a seguir demonstra como usar o MinValue campo para exibir entradas de variáveis para valores que estão fora do intervalo de valores de bytes possíveis.
public:
void MinMaxFields( Int32 numberToSet )
{
if ( numberToSet <= (Int32)Byte::MaxValue && numberToSet >= (Int32)Byte::MinValue )
{
// You must explicitly convert an integer to a byte.
MemberByte = (Byte)numberToSet;
// Displays MemberByte using the ToString() method.
Console::WriteLine( "The MemberByte value is {0}", MemberByte.ToString() );
}
else
{
Console::WriteLine( "The value {0} is outside of the range of possible Byte values", numberToSet.ToString() );
}
}
public void MinMaxFields(int numberToSet)
{
if(numberToSet <= (int)Byte.MaxValue && numberToSet >= (int)Byte.MinValue)
{
// You must explicitly convert an integer to a byte.
MemberByte = (Byte)numberToSet;
// Displays MemberByte using the ToString() method.
Console.WriteLine("The MemberByte value is {0}", MemberByte.ToString());
}
else
{
Console.WriteLine("The value {0} is outside of the range of possible Byte values", numberToSet.ToString());
}
}
let minMaxFields numberToSet =
if numberToSet <= int Byte.MaxValue && numberToSet >= int Byte.MinValue then
// You must explicitly convert an integer to a byte.
let myByte = byte numberToSet
printfn $"The MemberByte value is {myByte}"
else
printfn $"The value {numberToSet} is outside of the range of possible Byte values"
Public Sub MinMaxFields(ByVal numberToSet As Integer)
If numberToSet <= CInt([Byte].MaxValue) And numberToSet >= CInt([Byte].MinValue) Then
' You must explicitly convert an integer to a byte.
MemberByte = CType(numberToSet, [Byte])
' Displays MemberByte using the ToString() method.
Console.WriteLine("The MemberByte value is {0}.", MemberByte.ToString())
Else
Console.WriteLine("The value {0} is outside of the range of possible Byte values.", numberToSet.ToString())
End If
End Sub
Comentários
O valor dessa constante é 0.
Aplica-se a
Confira também
Colabore connosco no GitHub
A origem deste conteúdo pode ser encontrada no GitHub, onde também pode criar e rever problemas e pedidos Pull. Para mais informações, consulte o nosso guia do contribuidor.