If I make a new Windows Forms project and add a second Form (Form2), I can show the implicitly created form simply by referring to the class name:
Form2.Show()
If I look up the definition of Form.Show procedure, it is not listed as a Shared member of the Form class. How is it that I am able to call Show() on the Form2 class name?