How do I make folders in the project?
To create a folder into a project, right click the target project node in the solution explorer and select ‘Add Folder…’ option. This will add a new folder to the project, specify the name of the folder and press Enter. The folders inside a project help you manage and separate source files for different purpose in the same project. For example, you may divide the windows form project to three folders;
- first (Forms) containing user interface forms
- second (Constants) containing constant values (enumerations and error codes) to be used in the project
- third (StorageAccessor) containing classes for the database handling.
Index