- Number of years
- Number of months
- Number of quarters
- Number of half years
1 2 3 4 5 6 | $d1 = [DateTime]::Parse( "5/3/2022" ); $d2 = [DateTime]::Parse( "2/2/2012" ); $d3 = [DateTime]::MinValue + ( $d1 - $d2 ) $d3 .Year - 1 # 10 $d3 .Month - 1 # 3 $d3 .Day - 1 # 1 |
1 2 3 4 5 6 7 8 | TimeSpan span = AmortSched.FirstPrincipalPymntDate - AmortSched.FirstPrincipaMatDate; DateTime range = DateTime.MinValue + span; int yearCount = range.Year - 1; int monthCount = range.Month - 1; int totalMonthCount = (yearCount * 12) + monthCount; int totalQuarterCount = Math.Floor(totalMonthCount / 3); int totalHalfYearsCount = Math.Floor(totalMonthCount / 6); |