Answers for "how to calculate how many years and months and days and hours are between to dates c#"

C#
3

total months between two dates c#

((date1.Year - date2.Year) * 12) + date1.Month - date2.Month
Posted by: Guest on December-30-2020

Code answers related to "how to calculate how many years and months and days and hours are between to dates c#"

C# Answers by Framework

Browse Popular Code Answers by Language