Hi guys,
I have a question, when we create a class, we can use this keyword Public Friend, or just omit it.What’s the difference of them? What’s the difference between these classes? Affect access privilege?
Public Class aa
End Class
Friend Class bb
End Class
Private Class cc
End Class
' Types declared 'Private' must be inside another type
Protected Class dd
End Class
'Protected types can only be declared inside of a class
Class ee
End Class
Thanks in advance