I have a class with a load of methods and properties that will be used in multiple classes across the whole project. I don't want to have to instantiate an instance of this, that doesn't make any sense to me, but what is the best way to go about this?
I know in Java you could have a class marked with final and have a private constructor and static methods, as per this SO post. Is there a designated way of doing the same thing in vb.net that I'm missing?