In Visual Studio as most of you will have noticed that related file can be collapsed in to one. E.G.
- Form1.cs
- Form1.Designer.cs
I'm creating a DAL library and will be splitting partial classes in to several files such as:
- SomeTableClass.cs
- SomeTableClass.Generated.cs
- SomeTableClass.SomethingElse.cs
Is there any way in Visual Studio to recognise these file are related to each other an create the collapsible effect?
Thanks
Tony