Contains() публичный Метод

Does the range contain a particular age?
public Contains ( ushort age ) : bool
age ushort
Результат bool
        //---------------------------------------------------------------------

        /// <summary>
        /// Does the range overlap another range?
        /// </summary>
        public bool Overlaps(AgeRange other)
        {
            return Contains(other.Start) || other.Contains(start);
        }