Cara,
Tente usar o System.Threading.Timer
Timer thrdTimer = new Timer(execute, 10, 0, 1000);
void execute(object args){
// cast our parameter
int j = (int)args;
Console.WriteLine("passo aqui a cada " + j + "segundos");
}
Cara,
Tente usar o System.Threading.Timer
Timer thrdTimer = new Timer(execute, 10, 0, 1000);
void execute(object args)