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