次の方法で共有


Byte.MaxValue フィールド

Byte の最大有効値を表します。このフィールドは定数です。

Public Const MaxValue As Byte
[C#]
public const byte MaxValue;
[C++]
public: const unsigned char MaxValue;
[JScript]
public var MaxValue : Byte;

解説

この定数の値は 255 (16 進数の 0xFF) です。

使用例

 
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 'MinMaxFields


[C#] 
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());
   }
}

[C++] 
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());
    }
}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET, Common Language Infrastructure (CLI) Standard

参照

Byte 構造体 | Byte メンバ | System 名前空間 | MinValue