public void CgCollectTest()
        {
            GarbageCollection o = new GarbageCollection();

            o = null;
            GC.Collect();
        }
        public void IdisposableTest()
        {
            GarbageCollection o = new GarbageCollection();

            using (o)
            {
            }
        }