class productDTO
{
private string name;
public string GetName()
{
return name;
}
public void SetName(string name)
{
this.name = name;
}
}
private void button1_Click(object sender, EventArgs e)
{
productDTO productDTO = new productDTO();
productDTO.SetName("컴퓨터");
MessageBox.Show(productDTO.GetName());
}
평소에난 get, set을 이렇게 사용 했는데 C# 에서는 좀더 편하게 사용이 가능했다.
class productDTO
{
private string name;
public string Name
{
get
{
return name;
}
set
{
name = value;
}
}
}
private void button1_Click(object sender, EventArgs e)
{
productDTO productDTO = new productDTO();
productDTO.Name = "컴퓨터";
MessageBox.Show(productDTO.Name);
}
'[개인공부] > C#' 카테고리의 다른 글
[C#] ExcelToJson2.0 엑셀파일 Json파일로 바꾸기 (0) | 2023.04.08 |
---|---|
[C#] ExcelToJsonConvert 엑셀파일 Json파일로 바꾸기 (0) | 2023.02.18 |
[C#] Json 데이터 불러와서 활용하기 (0) | 2022.06.28 |
[C#] 카카오톡 메시지 보내기 (1) | 2019.04.10 |