using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SpecialFeatures30 { class ImplicitTyping { static void Main(string[] args) { //The compiler determines the variable type var a = 5; Console.WriteLine("a"); Console.WriteLine("Variable a is of type " + a.GetType()); Console.ReadLine(); } } }