static void Main() { var jt = new JitTest(); Console.WriteLine("Program started 2..."); Console.ReadLine(); Console.WriteLine("Calling Method1..."); jt.Method1(); Console.ReadLine(); Console.WriteLine("Calling Method2..."); jt.Method2(); Console.ReadLine(); Console.WriteLine("Calling Method1 again..."); jt.Method1(); Console.ReadLine(); }