Skip to content

Instantly share code, notes, and snippets.

@whoo24
Last active December 15, 2015 22:39
Show Gist options
  • Save whoo24/5334794 to your computer and use it in GitHub Desktop.
Save whoo24/5334794 to your computer and use it in GitHub Desktop.
C# float to byte
float value = 100.001f;
byte[] FloatToByte = System.BitConverter.GetBytes(value);
float ByteToFloat = BitConverter.ToSingle(FloatToByte, 0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment