System.Globalization.CCEastAsianLunisolarEraHandler.CheckDateTime C# (CSharp) Method

CheckDateTime() public method

public CheckDateTime ( DateTime time ) : void
time DateTime
return void
	public void CheckDateTime (DateTime time)
	{
		int date = CCFixed.FromDateTime (time);

		if (!ValidDate (date))
			throw new ArgumentOutOfRangeException ("time", "Time value was out of era range.");
	}
		

Usage Example

 internal void M_CheckDateTime(DateTime time)
 {
     M_EraHandler.CheckDateTime(time);
 }