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); }
Your best bet is to store them in a member variable and then dispose of them when you no longer need them.