I am doing a little work with a timer in my program to control a thread. The only code I have in the timer is in the tick event which has the line

Console.WriteLine = "Test"

I set the timers interval to 10 seconds in the desgin view. When I start my timer I get two Tests in the console window really fast then 10 seconds go by and another two Test but, I only have one test in the tick event.

I set a break at the timer tick event and when the event is fire it ads a line to the console then refires it self yet there is not code that is doing this.

What am I doing wrong?