C# UInt32 GetType
Description
UInt32 GetType
gets the Type of the current instance.
Syntax
UInt32.GetType
has the following syntax.
public Type GetType()
Returns
UInt32.GetType
method returns The exact runtime type of the current instance.
Example
using System;/*from w ww . j a v a 2s . c om*/
public class MainClass{
public static void Main(String[] argv){
System.Console.WriteLine(UInt32.MinValue.GetType());
}
}
The code above generates the following result.