System.Globalization.CCHebrewCalendar.day_number C# (CSharp) Method

day_number() public static method

The method computes the number of the day in the year from a Hebrew date.
public static day_number ( int day, int month, int year ) : int
day int An integer representing the day of the month, /// counting from 1. ///
month int An integer representing the month in the /// Hebrew year. ///
year int An integer representing the Hebrew year. ///
return int
	public static int day_number(int day, int month, int year) {
		return date_difference(1, 7, year,
			day, month, year) + 1;
	}