Nested classes

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

Guest

This might sound a silly question, but is it possible to nest a class without
actually including the implementation of that class within the parent class?
If possible, I'd prefer to have the nested class implemented in it's own .cs
file as this makes it easier to navigate my code and reduces the amount of
identation.

Can it be done?
 
Barguast said:
This might sound a silly question, but is it possible to nest a class without
actually including the implementation of that class within the parent class?
If possible, I'd prefer to have the nested class implemented in it's own .cs
file as this makes it easier to navigate my code and reduces the amount of
identation.

Can it be done?

No, I don't believe so.
 
Back
Top