파일 목록
-
📁 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.Dynamic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Week11_1
{
internal class ClassA
{
public void GetMyName()
{
Console.WriteLine("내이름 : 부모");
}
public virtual void GetMyAge()
{
Console.WriteLine("40~50 살");
}
}
}