c#获得两个时间的月的差值

2021-03-26 05:25

阅读:531

标签:time   start   end   star   span   获得   art   bsp   int   

C# codeDateTime startDate = DateTime.Parse("2008-1-1");
DateTime endDate = DateTime.Parse("2010-10-31");
int totalMonth = endDate.Year * 12 + endDate.Month - startDate.Year * 12 - startDate.Month; 

 


C# codeDateTime startDate = DateTime.Parse("2008-1-1");DateTime endDate = DateTime.Parse("2010-10-31");int totalMonth = endDate.Year * 12 + endDate.Month - startDate.Year * 12 - startDate.Month; 

c#获得两个时间的月的差值

标签:time   start   end   star   span   获得   art   bsp   int   

原文地址:https://www.cnblogs.com/bsdbqling/p/9396230.html


评论


亲,登录后才可以留言!