I think something is going wrong with my controls. If I try to set the min date or get the selected date, I get an error because of the datatype. The Tooltip shows me that the selected date is not a DateTime type it shows "DateTime?" instead of "DateTime". Is my Installation buggy?
1 Answer, 1 is accepted
0
Pavlina
Telerik team
answered on 11 May 2009, 12:39 PM
Hello Carsten,
"DateTime?" is shorthand for Nullable(DateTime) where DateTime is a value type. This structure represents an object whose underlying type is a value type that can also be assigned a null reference like a reference type.
For additional information, please refer to the following link: Nullable Types