System.Globalization.CCGregorianCalendar.date_difference C# (CSharp) Méthode

date_difference() public static méthode

The method computes the difference between two Gregorian dates.
public static date_difference ( int dayA, int monthA, int yearA, int dayB, int monthB, int yearB ) : int
dayA int The integer parameter gives the day of month /// of the first date. ///
monthA int The integer parameter gives the Gregorian /// month of the first date. ///
yearA int The integer parameter gives the Gregorian /// year of the first date. ///
dayB int The integer parameter gives the day of month /// of the second date. ///
monthB int The integer parameter gives the Gregorian /// month of the second date. ///
yearB int The integer parameter gives the Gregorian /// year of the second date. ///
Résultat int
	public static int date_difference(int dayA, int monthA, int yearA,
		int dayB, int monthB, int yearB)
	{
		return	fixed_from_dmy(dayB, monthB, yearB) -
			fixed_from_dmy(dayA, monthA, yearA);
	}

Usage Example

Exemple #1
0
 public static int day_number(int day, int month, int year)
 {
     return(CCGregorianCalendar.date_difference(31, 12, year - 1, day, month, year));
 }
All Usage Examples Of System.Globalization.CCGregorianCalendar::date_difference