Exemplo n.º 1
0
        public static void DestructorExample()
        {
            int             i   = 1;
            DestructedClass obj = new DestructedClass(0);

            for (; i < 120000; i++)
            {
                obj.objectGenerator(i);
            }

            Console.ForegroundColor = ConsoleColor.Red;
            Console.WriteLine("\nThe end");
        }
Exemplo n.º 2
0
 // Метод создающий и тут же уничтожающий объект
 public void objectGenerator(int i)
 {
     DestructedClass ob = new DestructedClass(i);
 }