I have a Windows.Forms.Timer in my code, that I am executing 3 times. However, the timer isn\'t calling the tick function at all.
Windows.Forms.Timer
private int co
Here's an Rx ticker that works:
Observable.Interval(TimeSpan.FromSeconds(1)) .Take(3) .Subscribe(x=>Console.WriteLine("tick"));
Of course, you can subscribe something more useful in your program.