C# UInt32 GetTypeCode
Description
UInt32 GetTypeCode
returns the TypeCode for value type
UInt32.
Syntax
UInt32.GetTypeCode
has the following syntax.
public TypeCode GetTypeCode()
Returns
UInt32.GetTypeCode
method returns The enumerated constant, TypeCode.UInt32.
Example
using System;//from ww w. ja va 2 s. c o m
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(UInt32.MinValue.GetTypeCode());
}
}
The code above generates the following result.