Example #1
0
 public static float GetFloat(byte[] buffer)
 {
     unchecked
     {
         return(Common32.ToSingle(GetInt(buffer)));
     }
 }
Example #2
0
 public static void GetBytes(byte[] buffer, float value)
 {
     unchecked
     {
         GetBytes(buffer, Common32.ToInteger(value));
     }
 }