Beispiel #1
0
		static void Main(string[] args)
		{
            int count;
            Destruct destruct_ob = new Destruct(0);
            //
			// TODO: Add code to start application here
			//
            for(count=1; count < 10000; count++)
            {
                destruct_ob.generator(count);
            }
            Console.WriteLine(">>>DONE<<<");
		}