Skip to content

Instantly share code, notes, and snippets.

@ssabii
Created April 21, 2020 08:55
Show Gist options
  • Save ssabii/ebb0d28c28dda23a688e4d47584bcbac to your computer and use it in GitHub Desktop.
Save ssabii/ebb0d28c28dda23a688e4d47584bcbac to your computer and use it in GitHub Desktop.
DLL 파일 생성용 샘플 클래스
namespace StudentLibrary
{
public class Student
{
private string name;
public string Name
{
get { return name; }
set { name = value; }
}
private string sex;
public string Sex
{
get { return sex; }
set { sex = value; }
}
private int age;
public int Age
{
get { return age; }
set { age = value; }
}
private int no;
public int No
{
get { return no; }
set { no = value; }
}
private string department;
public string Department
{
get { return department; }
set { department = value; }
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment