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
4 changes: 4 additions & 0 deletions HelloStudents/HelloStudents.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,13 @@
<Compile Include="Student3103Kim.cs" />
<Compile Include="Student3116JO.cs" />
<Compile Include="Student3199Ham.cs" />
<<<<<<< HEAD
<Compile Include="Student3208Kim.cs" />
=======
<Compile Include="Student3209Moon.cs" />
<Compile Include="Student3214Lee.cs" />
<Compile Include="Student3211Son.cs" />
>>>>>>> d71a868d626d43bd81a61c36d8bd67045cf3f0de
<Compile Include="StudentBase.cs" />
</ItemGroup>
<ItemGroup>
Expand Down
9 changes: 9 additions & 0 deletions HelloStudents/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,15 @@ static void Main(string[] args)
// 3206
// 3207
// 3208
students.Add(
new Student3208Kim()
{
FirstName = "연희",
LastName = "김",
StudentNumber=3208,
BaseYear=2021
}
);
// 3209
students.Add(
new Student3209Kim()
Expand Down
17 changes: 17 additions & 0 deletions HelloStudents/Student3208Kim.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 Student3208Kim : StudentBase
{
public override string Hello()
{
return "무야호~ 나는 " + this + "입니다";
}
}
}