tags:

views:

54

answers:

1

I'm looking for a simple way to decode data stored in the Decimal64 format (described here: http://en.wikipedia.org/wiki/Decimal64_floating-point_format) using C#.

Any thoughts?

A: 

Read a bit too fast there.

I think you'd want to have a look at the BitConverter.ToSingle method in C# but reverse the order of the bytes to get a correct result. :)

B.R Jaggernauten

That didn't produce the right result
Noam