System.Globalization.CCFixed.kday_before C# (CSharp) Method

kday_before() public static method

The static method computes the date of a day of week before a particular date.
public static kday_before ( int date, int k ) : int
date int An integer representing the date as /// fixed day number. ///
k int An integer representing the day of the week, /// starting with 0 for sunday. ///
return int
	public static int kday_before(int date, int k) {
		return kday_on_or_before(date-1, k);
	}
} // class CCFixed