C# Int64 GetType
Description
Int64 GetType
gets the Type of the current instance.
Syntax
Int64.GetType
has the following syntax.
public Type GetType()
Returns
Int64.GetType
method returns The exact runtime type of the current instance.
Example
The following code example demonstrates the GetType method.
using System;//from w ww . j av a 2 s .co m
class Sample
{
public static void Main()
{
Int64 e1 = 4;
Console.WriteLine(e1.GetType());
}
}
The code above generates the following result.