User1535942433 posted
Hi fazioliamboina,
Accroding to your description,I'm guessing that you need to put nested classes into a single .cs file.I suggest you could use partial classes to split the main class and the nested classes.
Just like this:
DayLogfile.cs:
public partial class DayLogfile
{
// Outer class
}
Daylogfile.LogSet.cs:
public partial class DayLogfile
{
private class LogSet
{
// LogSet details
}
}
Best regards,
Yijing Sun