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