In Windows Forms (Vb.net) how can I access the properties without instance (new) ?
Form1.Property = \"\" ??? the property deceleration is not static? what is called thi
VB.Net does some magic to allow you to pretend that forms don't have instances.
It creates a hidden shared instance, and converts static calls to instance methods (eg, Form1.Show()) into instance calls on this shared instance.
Form1.Show()
This is done for VB6 compatibility and should be avoided.