Byte.MinValue Campo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Rappresenta il valore minimo possibile di un oggetto Byte. Questo campo è costante.
public: System::Byte MinValue = 0;
public const byte MinValue = 0;
val mutable MinValue : byte
Public Const MinValue As Byte = 0
Valore del campo
Value = 0Esempio
Nell'esempio seguente viene illustrato come usare il MinValue campo per visualizzare gli input delle variabili dello schermo per i valori che non rientrano nell'intervallo dei possibili valori di byte.
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
Commenti
Il valore di questa costante è 0.