파일 목록
-
📁 10
-
📁 3
-
📁 4
-
📁 4-minicalc
-
📁 7
-
📁 parking manager
- 2.cs
- desktop.ini
- Title.png
- 객체지향 3대 특징(+1).txt
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Week11_1
{
internal class Child : ClassA
{
public new void GetMyName()
{
Console.WriteLine("My House is Good");
}
public override void GetMyAge()
{
Console.WriteLine("20~30");
}
}
}