vote up 0 vote down star
1

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 ?

flag

4 Answers

vote up 2 vote down

Try DateTime.FromOADate.

link|flag
vote up 1 vote down

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:

double CDate = 8.50; //The DATE from C++
DateTime newDate = new DateTime(1899, 12, 30);  //Start at 12/30/1899
int days = (int)Math.Floor(CDate); //Get the days (integer part)
double hours = (CDate-days) * 24; //Get the hours (fraction part)

newDate = newDate.AddDays(days).AddHours(hours);

EDIT Or use DateTime.FromOADate as suggested by Joe.

The beauty of SO, you get to learn new things.

link|flag
Thank you, guys. I love here. – wupher Sep 3 at 17:02
vote up 0 vote down

BTW: I tried DateTime.FromBinary, but it looks wrong.

link|flag
That's not an answer, you should edit your question instead. – Meta-Knight Sep 3 at 14:37
vote up 0 vote down

If it's an OLE DATE, use the information available from here:

The DATE type is implemented using an 8-byte floating-point number. Days are represented by whole number increments starting with 30 December 1899, midnight as time zero. Time values are expressed as fractional part. Time precision is 1 second. This type is also used to represent date-only (the fractional part is 0) or time-only (the whole number part is 0) values.

Using this, you can convert to a CLR DateTime.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.