Related questions
How to get complete month name from DateTime
What is the proper way to get the complete name of month of a DateTime object?
e.g. January, December.
I am currently using:
DateTime.Now.ToString("MMMMMMMMMMMMM");
I know it's not the correct way to do it.
Subtracting two dates
I have two calendars and each return a DateTime from calendar.SelectedDate.
How do I go about subtracting the two selected dates from each other, giving me the amount of days between the two selections?
There is a calendar.Subtract() …