System.Globalization.CCJulianCalendar.day_number C# (CSharp) Метод

day_number() публичный статический Метод

The method computes the number of the day in the year from a Julian 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 /// Julian year. ///
year int An integer representing the Julian year. /// Negative values are allowed also. ///
Результат int
	public static int day_number(int day, int month, int year) {
		return date_difference(31, (int)Month.december, year-1,
			day, month, year);
	}