Example #1
0
 public static void WriteFloat(Stream ms, double fVal)
 {
     ms.WriteByte(0xCB);
     ms.Write(BytesTools.SwapDouble(fVal), 0, 8);
 }