VB Access modifier vs. Java Access modifier
I was at a moment when I had to create classes in VB. Usually in simple dynamic web site’s development, you don’t really need to create a class.
Some terms in VB are different from Java or C#. But they have the pretty much same meaning. Here is vb’s access modifier for method:
Public -> Java has the same term and meaning.
Private -> Java has the same term and meaning.
Shared -> This is *static* in java. After a few seconds, got the concept.
Protected ->
Friend ->
Protected Friend ->





