计算本月底是几号

DateTime d1  =  DateTime.Now;
DateTime d2 
=  d1.AddMonths( 1 );
System.TimeSpan s 
=  d2 - d1;   
// 这个月月底是 s.Days.ToString;

同理,计算下个月月底是几号:
DateTime d1  =  DateTime.Now;
d1 
=  d1.AddMonths( 1 );
DateTime d2 
=  DateTime.Now.AddMonths( 2 );
TimeSpan s 
=  d2 - d1;   
// 下个月月底是 s.Days.ToString;

from: http://blog.toohi.com/toohi/articles/CSharp.html
http://babyblue.cnblogs.com/archive/2006/04/16/376276.html

你可能感兴趣的:(计算本月底是几号)