I must be missing something?!

  • Thread starter Thread starter Geoff Cox
  • Start date Start date
G

Geoff Cox

Hello,

I have just started using C# Visual Express beta 2 and after putting a
label on the form, I look at the code and see nothing like

Label label1 = new Label etc

Should I be seeing soemthing like this?

Cheers

Geoff
 
Geoff,

Maybe you're looking at the wrong source code file. Visual C# 2.0 uses the
new concept of partial classes in order to split the code of the forms in
two source files, one for the VS-generated code and another for the
user-written code.

Regards - Octavio
 
Geoff,

Maybe you're looking at the wrong source code file. Visual C# 2.0 uses the
new concept of partial classes in order to split the code of the forms in
two source files, one for the VS-generated code and another for the
user-written code.

Thanks Octavio - I see wht you mean!

Cheers

Geoff
 
Back
Top