System.Globalization.CCGregorianEraHandler.Era.Covers C# (CSharp) Method

Covers() public method

This function checks wether the given fixed day number is ion the time span of the era.
public Covers ( int date ) : bool
date int An integer giving the fixed day /// number. ///
return bool
		public bool Covers(int date) {
			return _start <= date && date <= _end;
		}

Usage Example

        public int EraYear(out int era, int date)
        {
            IList valueList = this._Eras.GetValueList();

            foreach (object obj in valueList)
            {
                CCGregorianEraHandler.Era era2 = (CCGregorianEraHandler.Era)obj;
                if (era2.Covers(date))
                {
                    return(era2.EraYear(out era, date));
                }
            }
            throw new ArgumentOutOfRangeException("date", "Time value was out of era range.");
        }