Open In App

C# | Byte.MinValue Field

The MinValue field of Byte Struct is used to represent the minimum possible value of byte data type. The value of this field is constant means that a user cannot change the value of this field. The value of this field is 0.

Syntax:



public const byte MinValue = 0;

Return Value: This field always returns 0.

Example:




// C# program to illustrate the
// Byte.MinValue field
using System;
  
class GFG {
  
    // Main Method
    static public void Main()
    {
        // display the Minimum value of Byte struct
        Console.WriteLine("Minimum Value is: " + Byte.MinValue);
  
        // Taking an array of the
        // integers
        int[] num = {12, 45, 1235, 5342};
  
        // taking variable of Byte type
        byte mynum;
  
        foreach(int n in num)
        {
  
            if (n >= Byte.MinValue && n <= Byte.MaxValue)
            {
  
                // using the method of Convert class
                mynum = Convert.ToByte(n);
  
                Console.WriteLine("Conversion is Possible.");
            }
  
            else 
            {
                Console.WriteLine("Not Possible");
            }
        }
    }
}

Output:



Minimum Value is: 0
Conversion is Possible.
Conversion is Possible.
Not Possible
Not Possible

Reference:


Article Tags :
C#