C# UInt32 MaxValue
Description
UInt32 MaxValue
represents the largest possible value
of UInt32. This field is constant.
Syntax
UInt32.MaxValue
has the following syntax.
public const uint MaxValue
Example
using System;//from w w w.j a va 2s .com
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(UInt32.MaxValue);
}
}
The code above generates the following result.