Exemplo n.º 1
0
        static void Main(string[] args)
        {
            Hoo hoo = new Hoo();

            hoo.Foo();
            hoo = null;
            // デストラクタ発動せん
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            Hoo hoo1 = new Hoo();

            hoo1 = null;
        }