S Scatropolis Apr 30, 2004 #1 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
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
D Daniel O'Connell [C# MVP] Apr 30, 2004 #2 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. Click to expand... 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.
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. Click to expand... 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.
S Scatropolis Apr 30, 2004 #3 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. Click to expand...
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. Click to expand...