c# 如何获取某年某月的最后一天

int year = int.Parse(row["r_Year"].ToString());  
int month = int.Parse(row["r_Month"].ToString());
DateTime asDt = new DateTime(year, month, 1);
asDt = asDt.AddMonths(1).AddDays(-1);  
string asOfDate = asDt.ToString("yyyy-MM-dd");


本文出自 “菜鸟的博客” 博客,谢绝转载!

你可能感兴趣的:(C#,日期处理)