Byte::MinValue Field
.NET Framework (current version)
Represents the smallest possible value of a Byte. This field is constant.
Assembly: mscorlib (in mscorlib.dll)
The value of this constant is 0.
The following example demonstrates how to use the MinValue field to screen variable inputs for values that are outside the range of possible byte values.
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() ); } }
Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Show: