Is there any other way else?

On VB6 it works fine because we do not need to write:

VB Code:
  1. Dim frm As New Form1()
We just write:

VB Code:
  1. Form1.Button1.Enabled = True
Is there a way to do it on .NET?


Thanks.