I have a form that uses a few timers. I noticed that the forms designer passes in a container:
_someTimer = new System.Windows.Forms.Timer(components);
When I've created timers without using Designer, I used the default constructor:
_otherTimer = new System.Windows.Forms.Timer();
I've never noticed any difference. Can anyone explain what difference it makes when a container is passed in upon construction?