Hi guys
I was writing to some code where I needed to read the date value from a Calendar control in my page (Ajax toolkit: calendar extender).
The code below:
DateTime newSelectedDate = myCalendarExtender.SelectedDate;
gives the following error:
Cannot implicitly convert type 'System.DateTime?' to 'System.DateTime'. An explicit conversion exists (are you missing a cast?)
However, by inserting a cast I can get the code to work:
DateTime newSelectedDate = (DateTime)myCalendarExtender.SelectedDate; // works fine!
The 'SelectedDate' property for the calendar control (Ajax toolkit) describes the data type as 'System.DateTime?' ... clearly the '?' has something to do with all of this.
What exactly is happening when a data type contains this symbol (?)... I presumed that I could apply the 'SelectedDate' property straight into a variable of type 'DateTime' without casting.
Thanks