Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions HelloStudents/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,14 @@ static void Main(string[] args)
// 3120

// 3201
students.Add(
new Student3116JO()
{
FirstName = "소리",
LastName = "강",
StudentNumber = 3201,
BaseYear = 2021
});
// 3202
// 3203
// 3204
Expand Down
10 changes: 10 additions & 0 deletions HelloStudents/Student3201Kang.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
namespace HelloStudents
{
class Student3201Kang : StudentBase
{
public override string Hello()
{
return "무야호~ 나는 " + this + "입니다!";
}
}
}