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