I am just starting .Net development (C#) and have come across some code that has me slightly confused....
If I have
Form myForm = new Form();
What does the following line actually do:
Application.Run(myForm);
Does it essentially do the same thing as myForm.ShowDialog() or myForm.Show() (that's what I thought, when running a form will do).....
I always find that the msdn is a poor resource for properly explaining material to new comers