Same Class....Different File

  • Thread starter Thread starter Scatropolis
  • Start date Start date
S

Scatropolis

Is there a way in C# to have more code of the same class in a different file?
This would be mostly for organization.

thanks
 
Scatropolis said:
Is there a way in C# to have more code of the same class in a different
file?
This would be mostly for organization.

Not currently. C# 2.0 is slated to have a feature called partial classes
which will allow you to split up a class among an arbitrary number of files.
 
sweet, thanks

Not currently. C# 2.0 is slated to have a feature called partial classes
which will allow you to split up a class among an arbitrary number of files.
 
Back
Top