C#/Winform
[C#] 특정 년,월 의 일수 가져오기
kjun.kr
2020. 7. 12. 00:41
728x90
// 2020 년 의 2월 일수를 가져옵니다. (결과:29)
int days = DateTime.DaysInMonth(2020, 2);
728x90