What is the difference between the following two operations (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 make sense or even compile in this case in VB.NET? (Show () is not a Shared / Static method) What happens in the second case?
Denis source share