Byte.MinValue Pole
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Reprezentuje najmniejszą możliwą wartość elementu Byte. To pole jest stałe.
public: System::Byte MinValue = 0;
public const byte MinValue = 0;
val mutable MinValue : byte
Public Const MinValue As Byte = 0
Wartość pola
Value = 0Przykłady
W poniższym przykładzie pokazano, jak używać MinValue pola do ekranowania zmiennych wejściowych dla wartości spoza zakresu możliwych wartości bajtowych.
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
Uwagi
Wartość tej stałej wynosi 0.
Dotyczy
Zobacz też
Współpracuj z nami w serwisie GitHub
Źródło tej zawartości można znaleźć w witrynie GitHub, gdzie można również tworzyć i przeglądać problemy i żądania ściągnięcia. Więcej informacji znajdziesz w naszym przewodniku dla współtwórców.