I am working on a program that requires the date of an event to get returned. I am looking for a "Date", not a "DateTime". There has to be a datatype that returns just the date... is there?
|
No there isn't. And you can retrieve individual date properties via |
|||
|
|
|
Unfortunately, not in the .Net BCL. Dates are usually represented as a DateTime object with the time set to midnight. As you can guess, this means that you have all the attendant timezone issues around it, even though for a Date object you'd want absolutely no timezone handling. |
|||
|
|
|
The Date type is just an alias of the DateTime type used by VB.NET (like int becomes Integer). Both of these types have a Date property that returns you the object with the time part set to 00:00:00. |
|||
|
|
|
DateTime has a Date property that you can use to isolate the date part. The ToString method also does a good job of only displaying the Date part when the time part is empty. |
|||
|
|
|
Create a wrapper class. Something like this:
And expose whatever of |
|||
|
|
|
You can return DateTime where the time portion is 00:00:00 and just ignore it. The dates are handled as timestamp integers so it makes sense to combine the date with the time as that is present in the integer anyway. |
|||
|
|
|
You could try one of the following:
But there is no "Date" type in the BCL. |
|||
|
|
|
For this, you need to use the date, but ignore the time value. Ordinarily a date would be a DateTime with time of The |
|||
|
|
|
The DateTime object has a Property which returns only the date portion of the value.
|
|||
|
|