I need to create a bunch of timer as local variable to do something like:
void Foo() { Timer t = new Timer(myTimerCallback,null,1000,Timeout.Infinite); }
Why it's impossible to store them? Maybe you can just remove them from that collection when their work is done?