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/App.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1"/>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.8"/>
</startup>
</configuration>
4 changes: 2 additions & 2 deletions HelloStudents/HelloStudents.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<OutputType>Exe</OutputType>
<RootNamespace>HelloStudents</RootNamespace>
<AssemblyName>HelloStudents</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.8</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<Deterministic>true</Deterministic>
Expand Down Expand Up @@ -48,7 +48,6 @@
</ItemGroup>
<ItemGroup>
<Compile Include="Student3109Kim.cs" />
<Compile Include="MyModule1.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Student3099Ham.cs" />
Expand All @@ -68,6 +67,7 @@
<Compile Include="Student3116JO.cs" />
<Compile Include="Student3199Ham.cs" />
<Compile Include="Student3209Moon.cs" />
<Compile Include="Student3213Lim.cs" />
<Compile Include="Student3214Lee.cs" />
<Compile Include="Student3211Son.cs" />
<Compile Include="StudentBase.cs" />
Expand Down
34 changes: 0 additions & 34 deletions HelloStudents/MyModule1.cs

This file was deleted.

37 changes: 14 additions & 23 deletions HelloStudents/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ static void Main(string[] args) // 메서드 이름 대문자
BaseYear = 2021
});
// 3109
students.Add(
students.Add(
new Student3109Kim()
{
FirstName = "TaeYoung",
Expand All @@ -117,12 +117,7 @@ static void Main(string[] args) // 메서드 이름 대문자
BaseYear = 2021
});
// 3111
students.Add(
new Student3111Shin()
{
FirstName = "잎새", LastName = "신",
StudentNumber = 3111, BaseYear = 2019
});

// 3112
students.Add(
new Student3112Oh()
Expand All @@ -138,7 +133,7 @@ static void Main(string[] args) // 메서드 이름 대문자
{
FirstName = "수빈",
LastName = "이",
StudentNumber = 3113,
StudentNumber = 3113,
BaseYear = 2019
});
// 3114
Expand Down Expand Up @@ -184,15 +179,18 @@ static void Main(string[] args) // 메서드 이름 대문자
BaseYear = 2021
});
// 3118
students.Add(
new Student3118Choi()
{
FirstName = "수민",
LastName = "최",
StudentNumber = 3118,
});

// 3119
// 3120
//3213
students.Add(
new Student3213Lim()
{
FirstName = "소영",
LastName = "임",
StudentNumber = 3213,
BaseYear = 2024
});

// 3201
// 3202
Expand All @@ -203,14 +201,7 @@ static void Main(string[] args) // 메서드 이름 대문자
// 3207
// 3208
// 3209
students.Add(
new Student3209Kim()
{
FirstName = "진진",
LastName = "문",
StudentNumber = 3209,
BaseYear = 2021
});

// 3210
// 3211
students.Add(
Expand Down
2 changes: 1 addition & 1 deletion HelloStudents/Student3113Lee.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ public override string Hello()
return "�ȳ��ϼ���? ���� " + this + "�Դϴ�!";
}
}
}}
}
16 changes: 16 additions & 0 deletions HelloStudents/Student3213Lim.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
{
internal class Student3213Lim : StudentBase
{
public override string Hello()
{
return "안녕? 나는 " + this + "야";
}
}
}