In C++ projects in Visual Studio 2008 there is possibility to Add -> New filter which will be usefull if one wants to separate some files from others (ie. source files from header files) and keep each type in "semifolders" without moving them physically on the hard disk. I wanted to do the same in c# projects with, lets say xml files, but the only option here is to create folder physically, which I want to avoid. And there are my questions:
- Is it possible (and how) to create filters in C# projects?
- Why C# and C++ project's Add options differ from each other (in first you can add folder(not filter) and in second filter(not folder)?
ps. I am using VS2008 and I don't know if this changed in VS2010.