System.Globalization.CCEastAsianLunisolarCalendar.dmy_from_fixed C# (CSharp) Method

dmy_from_fixed() public static method

public static dmy_from_fixed ( int &day, int &month, int &year, int date ) : void
day int
month int
year int
date int
return void
	public static void dmy_from_fixed(out int day, out int month,
		out int year, int date)
	{
		/*
		my_from_fixed (out month, out year, date);
		day = date - fixed_from_dmy (1, month, year) + 1;
		*/
		throw new Exception ("dmy_from_fixed");
	}