public static void Main()
 {
     int x = 3;
       LifetimeVsScope obj = new LifetimeVsScope(5);
       ScopeHider();
       Console.WriteLine("Still alive! {0} {1}", x, obj.instanceVar);
 }
    public static void Main()
    {
        int             x   = 3;
        LifetimeVsScope obj = new LifetimeVsScope(5);

        ScopeHider();
        Console.WriteLine("Still alive! {0} {1}", x, obj.instanceVar);
    }