So, I have been programming in C # for the last 6 years or so, and now I have wet VB.net on my feet.
The code base I'm working with uses some modules. For me, the module is very similar to singleton. Only one exists; it can be called anywhere inside the namespace.
Is there something I am missing here? Does VB support the usual way of structuring a singleton object (private constructor / public instance field)?
source share