Beginner question: In a VB.net development environment, is it safe to assume the word "method" eventually refer us to the concept of functions or subroutines?
Eventually function is a block of instructions, created for modular programming purposes. It may have arguments that get passed into it and it certainly has to return something. Subs are likewise with no returns.
Excuse my ignorance but I'm just starting out to learn VB.net.