Hi,
I am facing problem in c# using vs 2.0. I had created windows form named as MainForm.cs.In code-behind class MainForm.Design er.cs some of objects were declared as static. Surprisingly when i double click on my form while developing, all static objects turned into public itself. and that create big problem while debuging.
for example
public static System.Windows. Forms.TreeView ApplicationTree ;
will convert into
public System.Windows. Forms.TreeView ApplicationTree ;
automatically when i double click on my form.
any solution guyz...
I am facing problem in c# using vs 2.0. I had created windows form named as MainForm.cs.In code-behind class MainForm.Design er.cs some of objects were declared as static. Surprisingly when i double click on my form while developing, all static objects turned into public itself. and that create big problem while debuging.
for example
public static System.Windows. Forms.TreeView ApplicationTree ;
will convert into
public System.Windows. Forms.TreeView ApplicationTree ;
automatically when i double click on my form.
any solution guyz...
Comment