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