What is the difference between the following two statements (in terms of memory management):
Dim frm as New MyForm()
frm.Show()
VS
MyForm.Show()
I am originally a C# developer, how does the second one make sense or even compile for that matter in VB.NET? (Show() is not a Shared/Static method) What is happening in the second case?