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
1 change: 1 addition & 0 deletions HelloStudents/HelloStudents.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
<Compile Include="Student3103Kim.cs" />
<Compile Include="Student3116JO.cs" />
<Compile Include="Student3199Ham.cs" />
<Compile Include="Student3210Park.cs" />
<Compile Include="Student3209Moon.cs" />
<Compile Include="Student3214Lee.cs" />
<Compile Include="Student3211Son.cs" />
Expand Down
8 changes: 8 additions & 0 deletions HelloStudents/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,14 @@ static void Main(string[] args)
BaseYear = 2021
});
// 3210
students.Add(
new Student3210Park()
{
FirstName = "지윤",
LastName = "박",
StudentNumber = 3210,
BaseYear = 2021
});
// 3211
students.Add(
new Student3211Son()
Expand Down
17 changes: 17 additions & 0 deletions HelloStudents/Student3210Park.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HelloStudents
{

class Student3210Park : StudentBase
{
public override string Hello()
{
return "안녕? 나는 " + this + "이야";
}
}
}