Access Flashcards
1
Q
Protected
A
Only available for derived classes
2
Q
Friend
A
Only available within the same project
3
Q
Access: Public, Protected, Friend, Private
A
Public Class ForEverybody
Protected Class ForMyHeirs
Friend stringForThisProject As String
Protected Friend stringForProjectAndHeirs As String
Private numberForMeOnly As Integer
4
Q
A