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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c#获得两个时间的月的差值相关的知识,希望对你有一定的参考价值。

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#获得两个时间的月的差值的主要内容,如果未能解决你的问题,请参考以下文章

C# 获得目录创建时间的源码片段

如何计算定义自定义财务日历的两个日期之间的月数?

Excel工资表各岗位每个月的月平均工资?

C# 两个集合比较差值 Linq的Except的用法

java 中 日期如何相加减???

C#如何获得当前月的第一天与最后一天