Static Method implementation in VB.NET
A VB.NET module is a static class. The compiler handles this for you. Every method and property on it is static (Shared). A class with a static (Shared) member on it is exactly that: a class with a static (Shared) member. You don’t have to create an instance of it to access the static (Shared) … Read more