Constructor & Partial Class?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I noticed in ASP.net 2.0 when a new class is created a contructor is not
created as it was in ASP.net 1.1. Does any one know why the constructor is
not there. Can I add a contructor? Also how is a "partial class" different
from a class?
 
petro napisał(a):
I noticed in ASP.net 2.0 when a new class is created a contructor is not
created as it was in ASP.net 1.1. Does any one know why the constructor is
not there. Can I add a contructor? Also how is a "partial class" different
from a class?

whole secret is in "partial" keyword. It allows class to be spanned
through more than one files. I think the rest is clear:)
 
Back
Top