I got a binary file, and one of record field stored some date infomation.
The save program is written by VC++ and using the DATE type.
How can read it into C#'s DateTime type ?
|
1
|
|
|
|
|
|
Try DateTime.FromOADate. |
||
|
|
|
|
As noted in Vinay's answer, the VC++ DATE is really a double. Just read in a double and then convert based on the description. Here is some sample code for the conversion:
EDIT Or use DateTime.FromOADate as suggested by Joe. The beauty of SO, you get to learn new things. |
|||
|
|
|
BTW: I tried DateTime.FromBinary, but it looks wrong. |
||
|
|
|
If it's an OLE DATE, use the information available from here:
Using this, you can convert to a CLR DateTime. |
||
|
|