C# Class JelloScrum.Model.Helpers.DateRange

Simple daterange struct
Show file Open project: auxilium/JelloScrum Class Usage Examples

Public Methods

Method Description
DateRange ( System.DateTime start, System.DateTime end ) : System

Initializes a new instance of the DateRange struct.

Overlap ( System.DateTime date ) : bool

Does the daterange overlap the specified date?

Method Details

DateRange() public method

Initializes a new instance of the DateRange struct.
public DateRange ( System.DateTime start, System.DateTime end ) : System
start System.DateTime The start date.
end System.DateTime The end date.
return System

Overlap() public method

Does the daterange overlap the specified date?
public Overlap ( System.DateTime date ) : bool
date System.DateTime The date.
return bool