diff --git a/HelloStudents/Program.cs b/HelloStudents/Program.cs index 0d6d98c..afe899c 100644 --- a/HelloStudents/Program.cs +++ b/HelloStudents/Program.cs @@ -39,6 +39,13 @@ static void Main(string[] args) // 3113 // 3114 // 3115 + // 3116 + students.Add( + new Student3116JO() + { + FirstName = "서영", LastName = "조", + StudentNumber = 3116, BaseYear = 2020 + }); // 3117 // 3118 // 3119 diff --git a/HelloStudents/Student3116JO.cs b/HelloStudents/Student3116JO.cs new file mode 100644 index 0000000..d32570e --- /dev/null +++ b/HelloStudents/Student3116JO.cs @@ -0,0 +1,10 @@ +namespace HelloStudents +{ + internal class Students3116JO : StudentBase + { + public override string Hello() + { + return "안녕? 나는 " + this + "야." + } + } +} \ No newline at end of file