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="Student3203Kwon.cs" />
<Compile Include="StudentBase.cs" />
</ItemGroup>
<ItemGroup>
Expand Down
8 changes: 8 additions & 0 deletions HelloStudents/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,14 @@ static void Main(string[] args)
// 3201
// 3202
// 3203
students.Add(
new Student3203Kwon()
{
FirstName = "혜수",
LastName = "권",
StudentNumber = 3203,
BaseYear = 2021
});
// 3204
// 3205
// 3206
Expand Down
16 changes: 16 additions & 0 deletions HelloStudents/Student3203Kwon.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 Student3203Kwon : StudentBase
{
public override string Hello()
{
return this + "는 전설이다...............★☆";
}
}
}