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
2 changes: 1 addition & 1 deletion HelloStudents/HelloStudents.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<Compile Include="Student3103Kim.cs" />
<Compile Include="Student3116JO.cs" />
<Compile Include="Student3199Ham.cs" />
<Compile Include="StudentBase.cs" />
<Compile Include="Student3216Han.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
Expand Down
10 changes: 10 additions & 0 deletions HelloStudents/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,16 @@ static void Main(string[] args)
// 3213
// 3214
// 3215
// 3216
students.Add(
new Student3216Han() {
FirstName = "나래",
LastName = "한",
StudentNumber = 3216,
BaseYear = 2021

});

// 3217
// 3218
// 3219
Expand Down
13 changes: 13 additions & 0 deletions HelloStudents/Student3216Han.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
using System.Text;
using System.Threading.Tasks;

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