Click or drag to resize
DateTimeExtensionsMonthsFromStartDateToEndDate Method
Gets the number of months between the current date and the supplied date

Namespace: Entelect.Extensions
Assembly: Entelect (in Entelect.dll) Version: 0.0.79
Syntax
C#
public static int MonthsFromStartDateToEndDate(
	this DateTime startDate,
	DateTime endDate
)

Parameters

startDate
Type: SystemDateTime
The date to calculate from
endDate
Type: SystemDateTime
The date to calculate to

Return Value

Type: Int32
The difference in months

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type DateTime. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also