- using System;
- namespace ConsoleApplication1
- {
- class Program
- {
- static void Main(string[] args)
- {
- int i=2142324223;
- System.Type tp = i.GetType();
- Console.WriteLine(tp);
- string s = "forget code";
- System.Type tp1 = s.GetType();
- Console.WriteLine(tp1);
- }
- }
- }
- System.Int32
- System.String