Interface

    Interface, Abstract, Virtual

    🟦 Interface, Abstract, Virtual - 패턴 책을 공부하는데 위의 개념이 잡히지않아 이해가 어려웠음 - 나름대로 이해한 것을 정리함 🟦 Interface 🟧 Document https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/interface interface - C# Reference :::no-loc text=interface::: (C# Reference) docs.microsoft.com - 인터페이스 - 구현해야할 멤버들을 선언하는 것 - 인터페이스 안에서 구현 불가 - 인터페이스 안에 쓸 수 있는 멤버는 총 4개 - Methods - Properties - Indexers // 인덱서를 공부한..