I want to organize my solution by adding folders and organize classes into them
how to access these classes as i tried to access them but can’t
folders looks like packages in java
I want to organize my solution by adding folders and organize classes into them
Share
When you create a folder in the Visual C# project it normally creates a namespace for items created in that folder. You need to add a
using blah.foldernamestatement to the c# file where you are trying to use the items from the folder, or you can edit the file in the folder to usenamespace blahinstead ofnamespace blah.folder.