diff --git a/HelloStudents/HelloStudents.csproj b/HelloStudents/HelloStudents.csproj index 23de553..ea96be1 100644 --- a/HelloStudents/HelloStudents.csproj +++ b/HelloStudents/HelloStudents.csproj @@ -54,6 +54,7 @@ + diff --git a/HelloStudents/Program.cs b/HelloStudents/Program.cs index 2e676e4..04484f7 100644 --- a/HelloStudents/Program.cs +++ b/HelloStudents/Program.cs @@ -91,6 +91,14 @@ static void Main(string[] args) // 3204 // 3205 // 3206 + students.Add( + new Student3116JO() + { + FirstName = "수현", + LastName = "김", + StudentNumber = 3206, + BaseYear = 2021 + }); // 3207 // 3208 // 3209 diff --git a/HelloStudents/Student3206Kim.cs b/HelloStudents/Student3206Kim.cs new file mode 100644 index 0000000..43bf617 --- /dev/null +++ b/HelloStudents/Student3206Kim.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace HelloStudents +{ + class Student3206Kim : StudentBase + { + public override string Hello() + { + return "안녕하세요? 저는 " + this + "입니당"; + } + } +}