c# select case

2013년 05월 07일 golgol 0

//요일구하기 public static string GetDay(string FLI_DAY) { string tempGetDay = string.Empty; switch (FLI_DAY) { case “MO”: tempGetDay = “월”; break; case “TU”: tempGetDay = “화”; […]