 
 Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Byte.MinValue Field in C#
The Byte.MinValue field in C# is used to represent the smallest possible value of a Byte.
Syntax
Following is the syntax −
public const byte MinValue = 0;
Example
Let us now see an example to implement the Byte.MinValue method −
using System;
public class Demo {
   public static void Main(){
      byte val;
      val = Byte.MinValue;
      Console.WriteLine("Minimum Value (Byte) = "+val);
   }
}
Output
This will produce the following output −
Minimum Value (Byte) = 0
Advertisements
                    