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

GetMonth() public static method

public static GetMonth ( DateTime date ) : int
date DateTime
return int
	public static int GetMonth (DateTime date)
	{
		throw new Exception ("GetMonth");
	}

Usage Example

 public override int GetMonth(DateTime time)
 {
     M_CheckDateTime(time);
     return(CCEastAsianLunisolarCalendar.GetMonth(time));
 }