VOOZH about

URL: https://www.geeksforgeeks.org/c-sharp/uint64-minvalue-field-in-c-sharp-with-examples/

⇱ UInt64.MinValue Field in C# with Examples - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

UInt64.MinValue Field in C# with Examples

Last Updated : 11 Jul, 2025
The MinValue property or Field of UInt64 Struct is used to represent the minimum possible value of the 64-bit unsigned long integer i.e. ulong 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. This prevents an OverflowException at run time. Syntax:
public const ulong MinValue = 0;
Return Value: This field always returns 0. Example:
Output:
Minimum Value is: 0
Not equal..!!
Type of var1 is: UInt64
Reference:
Comment
Article Tags:

Explore