DateTime 사용법

ASP.NET 2008. 6. 25. 17:48

int year = System.DateTime.Now.Year;
int month = System.DateTime.Now.Month;
int lastDay = System.DateTime.DaysInMonth(year, month); // 년도와 월을 입력하면 해당하는 월의 마지막날을 리턴.

정확히는 해당월이 가진 총 날짜수를 카운트한 결과를 리턴
System.DateTime dt = new DateTime(year, month, lastDay);




마지막 일수만을 원하시면.. lastDay변수만으로도 가능하겠구요...
날짜형식으로 사용안하셔도 된다면... 각 년,월,일을 결합해서 사용하셔도 되겠네요...
Posted by 퓨전마법사
,