I have a basic question trying to understand the correct way to structure a vb.net solution.
So, suppose I'd like to create a database application for a supermarket. How would I go seperating the different code modules, the appropriate classes, the modules etc. Should I create a single file with all my clases, a single module with all my public shared methods, should I create a single namespace to include everything or should I seperate each class in its own physical file (one class per vb file), seperate modules according to usage etc. What I want to know is how should one think when having to organize the different code units when designing a solution in vb.net.
BR