Language/C#

C# - 타입 과 타입 멤버들

청렴결백한 만능 재주꾼 2021. 1. 21. 05:24
반응형

type과 type member들이 있는데 

 

일반적으로 type은 class, struct, enums, interfaces, delegate가 있고,

type member에는 fields, properties, constructors, methods 등이 있다.

 

c#에는 5가지 다른 access modifiers가 있다.

 - Private

 - Protected

 - Internal

 - Protected Internal

 - Public

 

Type member는 모든 access modifiers를 가질 수 있다. 

Type은 internal과 public만 가능하다.

 

 

Private - 오직 그 포함된 클래스 안에서만 접근 가능

Public - 제한 없음. 어디서든 접근 가능

Protected - 포함된 타입이던지 포함된 타입부터 파생된 타입에서 접근 가능.

 

반응형