In C#,
How we are check certain date with in week dates?
Eg: 6/02/2014
Current Weeks: 02/02/2014 - 08/02/2014
so this dates are with in above wee
hmm
public bool isBetween(DateTime input, DateTime date1, DateTime date2) { if (input > date1 && input < date2) return true; else return false; }
?
input= your date date1 & date2 = start and end of a week