C# 클래스 상속, is/as 키워드
클래스 상속(IS-A 관계) - 부모 클래스 : base, parent, 상위, super - 자식 클래스 : derived, child, 파생, sub - 클래스의 재사용 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _081_01_classInheritance { class Super { protected int a; //private 불가능, public 가능 public void Print() { Console.WriteLine("Super Print()"); } } class Sub : Super { int b; pub..