A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://www.geeksforgeeks.org/c-sharp/c-sharp-byte-maxvalue-field/ below:

C# | Byte.MaxValue Field - GeeksforGeeks

C# | Byte.MaxValue Field

Last Updated : 11 Jul, 2025

The

MaxValue

field of Byte Struct is used to represent the maximum value of the byte data type. The value of this field is constant means that the user cannot change the value of this field. The value of this field is 255. Its hexadecimal value is

0xFF

.

Syntax:
public const byte MaxValue = 255;
Return Value:

This field always returns 255.

Example: CSharp
// C# program to illustrate the
// Byte.MaxValue Field
using System;

class GFG {

    // Main Method
    static public void Main()
    {
        // display the Maximum
        // value of Byte struct
        Console.WriteLine("Maximum Value is: " + Byte.MaxValue);

        // taking a variable
        byte var1 = 255;

        if (var1.Equals(Byte.MaxValue)) 
        {
            Console.WriteLine("Equal..!!");
            Console.WriteLine("Type of var1 is: {0}",
                                 var1.GetTypeCode());
        }

        else 
        {
            Console.WriteLine("Not equal..!!");
            Console.WriteLine("Type of var1 is: {0}",
                                 var1.GetTypeCode());
        }
    }
}
Output:
Maximum Value is: 255
Equal..!!
Type of var1 is: Byte
Reference:

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4