public static void WriteDouble(double aVal, byte[] aBuf, int aOff)
 {
     LittleEndianHelper.WriteLong(Convert.ToInt64(aVal), aBuf, aOff);
 }