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="Student3213Lee.cs" />
<Compile Include="StudentBase.cs" />
</ItemGroup>
<ItemGroup>
Expand Down
9 changes: 8 additions & 1 deletion HelloStudents/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,14 @@ static void Main(string[] args)
// 3210
// 3211
// 3212
// 3213
students.Add(
new Student3213Lee()
{
FirstName = "민지",
LastName = "이",
StudentNumber = 3213,
BaseYear = 2021
});
// 3214
// 3215
// 3217
Expand Down
16 changes: 16 additions & 0 deletions HelloStudents/Student3213Lee.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace HelloStudents
{
class Student3213Lee : StudentBase
{
public override string Hello()
{
return "무야호 나는 " + this + "입니다.";
}
}
}