You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
VirtueSky edited this page Dec 6, 2024
·
6 revisions
1. Access Modifiers (Các phạm vi truy cập)
Modifier
Description
public
The code is accessible for all classes
private
The code is only accessible within the same class
protected
The code is accessible within the same class, or in a class that is inherited from that class. You will learn more about inheritance in a later chapter
internal
The code is only accessible within its own assembly, but not from another assembly. You will learn more about this in a later chapter