I've seen a lot of examples that shows how I can run a task using the RX framework by timer e.g.,
var timer = Observable
.Timer(TimeSpan.FromSeconds(3), TimeSpan.FromSeconds(3))
.Subscribe(q =>
{
Console.WriteLine("do something here " + q);
});
I would like to know if it's possible, and if so, how can I use the RX framework to run a task by schedule, for e.g., every day at 12 midnight.