Converting Floating Point to Binary

dsgcto

New member
Joined
Mar 13, 2007
Messages
1
Programming Experience
10+
I am writing a VB.NET program that requires me to take a floating point number and write it to a binary file in 4 bytes. Has anyone done this conversion before? Hope you can help.

Regards,

Dave
 
BitConverter.GetBytes(theSingleValue)
 
Last edited:
Back
Top