using System;
namespace ConsoleApplication_C_Sharp
{
class Program
{
static Type _type1 = typeof(int);
static Type _type2 = typeof(char);
static void Main(string[] args)
{
Console.WriteLine(_type1);
Console.WriteLine(_type2);
}
}
}
/*
run:
System.Int32
System.Char
*/