I am creating a project with many classes. I need to have a kind of settings class AKA module in VB that is accessible from all other classes. I want to know a method to achieve that without creating a separate settings object and passing it to each other class constructor.
Thanks
Use a static class with static fields
and in your other classes