In C#, if I was to read in “3 32-bit floating point numbers” as a byte[] from a binary file Stream, how would I extract the 3 decimals? Looking for the code to read the data and then extract the 3 decimals. Assume the file only contains the “3 32-bit floating point numbers”.
In C#, if I was to read in 3 32-bit floating point numbers as
Share
Use
BitConvert.ToSingle: