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<<<");
		}
Beispiel #2
0
	    public void generator(int i)
	    {
	        Destruct o = new Destruct(i);
	        Console.WriteLine("Creating " + i);
	    }