반응형
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 - 포함된 타입이던지 포함된 타입부터 파생된 타입에서 접근 가능.
반응형
'Language > C#' 카테고리의 다른 글
C# - ToString()과 Convert.Tostring() 사용법 (0) | 2021.01.22 |
---|---|
C# - 제네릭 Generics (0) | 2021.01.22 |
C# - 메서드, 메소드 (Methods) (0) | 2021.01.15 |
C# - 추상 클래스와 인터페이스 차이, 다중 상속 (0) | 2021.01.15 |
C# - 데이터 변환(convert, parse,tryparse), 어레이(Array), 주석(Comments), 이프(If),논리 연산자(Logical Operator), Switch , While, Do while Loop statement (0) | 2021.01.05 |