I am kinda stuck about this problem. How can I get the month calendar saturday values when i selected a specific date.
For example: i selected February 14 on the month calendar. After selecting it there will be a prompt which contains Saturday "February 19, 2011" or i selected February 24, The prompt will display "February 26 2011".
UPDATE
After almost 2 years I want to change this answer.
These days I would never create a "utility function" for a
class
. I now always "extend" the class. The signature should now beDateTime.Next(DayOfWeek)
. See http://msdn.microsoft.com/en-us/library/vstudio/bb383977.aspx for more details on extensions.Also the logic is wrong. If
now
is a Saturday then it would always return the current date. I think most callers would expect it returnnow
+ 7 days. So the first change is:Then change the function to work with any day of the week:
Now "extend" the DateTime class to support Next(DayOfWeek)