Skip to content
Merged
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 @@ -32,6 +32,9 @@
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup>
<StartupObject>HelloStudents.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand All @@ -48,6 +51,7 @@
<Compile Include="Student3099Ham.cs" />
<Compile Include="Student3108Kim.cs" />
<Compile Include="Student3103Kim.cs" />
<Compile Include="Student3116JO.cs" />
<Compile Include="Student3199Ham.cs" />
<Compile Include="StudentBase.cs" />
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions HelloStudents/Student3116JO.cs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
namespace HelloStudents
{
internal class Students3116JO : StudentBase
internal class Student3116JO : StudentBase
{
public override string Hello()
{
return "안녕? 나는 " + this + "야."
return "안녕? 나는 " + this + "야.";
}
}
}