Exemple #1
0
        static void Main(string[] args)
        {
            Hoo hoo = new Hoo();

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

            hoo1 = null;
        }