How can I make the timer notify when it's running out of Console? It cleans the console every 1 hour
Example:
> Falta 3 segundos para o terminar
> Falta 2 segundos para o terminar
> Falta 1 segundos para o terminar
Timer:
private static void Timer(Object o)
{
Console.Clear();
GC.Collect();
}
Timer t = new Timer(Timer, null, 0, 3600000);