Byte.MaxValue Field
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Represents the largest possible value of a Byte. This field is constant.
Assembly: mscorlib (in mscorlib.dll)
The following example demonstrates how to use the MaxValue field to screen variable inputs for values that are outside the range of possible byte values.
public void MinMaxFields(System.Windows.Controls.TextBlock outputBlock, 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. outputBlock.Text += String.Format("The MemberByte value is {0}", MemberByte.ToString()) + "\n"; } else { outputBlock.Text += String.Format("The value {0} is outside of the range of possible Byte values", numberToSet.ToString()) + "\n"; } }
Show: