If we have the following situation:
namespace SomeNameSpace
{
public class Class1
{
private class NestedClass1
{
// NestedClass1 implementation
}
private class NestedClass2
{
// NestedClass1 implementation
}
}
public class Class2
{
// so on ...
}
}
What is the best way to organize folders and files for nested classes?
First of all, we have Folder "SomeNameSpace". Then files "Class1.cs, Class2.cs, ...".
Consider nestes classes in "Class1". Is it the right way to create files "Class1.NestedClass1.cs, ..." and place them in folder SomeNameSpace?
Or create new folder, then what name should it have, and may be it is not proper way because it looks like new namespace?