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