I have functions that I use often. I'd like to separate them to their own file, so that all existing files have access to them, rather than having to duplicate the functions on each and every page I'd like to use them on.
I see in VB, the "Public Module" type, which seems to give me access throughout my application to its functions within.
How could one do this in C#?
Go to the complete details ...