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"); }
// Метод создающий и тут же уничтожающий объект public void objectGenerator(int i) { DestructedClass ob = new DestructedClass(i); }