A way to get to the static Singleton from languages that don't support static class methods like Driver.getInstance().
More...
A way to get to the static Singleton from languages that don't support static class methods like Driver.getInstance().
Research indicates that at least some versions of Visual Basic (pre-.NET), as well as Visual Basic for Applications (VBA) limit .NET classes to object creation, instance methods and instance properties. Unfortunately, that means they can't call pure static methods like WasatchNET.Driver.getInstance().
This class is provided as something that any caller can easily create (instantiate), and then access the Driver Singleton via the single exposed "instance" property.