Exemplo n.º 1
0
        public static double[] Byte32ToDoubleList(int expectedLength, bool isBigEndian, byte[] dataBytes)
        {
            IByteConvert convert = new ByteConvert(isBigEndian, 32);

            convert.ValidateLength(dataBytes, expectedLength);

            return(convert.ByteToArray(dataBytes));
        }
Exemplo n.º 2
0
    public static double[] Byte32ToDoubleList(int expectedLength, bool isBigEndian, byte[] dataBytes)
    {
      IByteConvert convert = new ByteConvert(isBigEndian, 32);

      convert.ValidateLength(dataBytes, expectedLength);

      return convert.ByteToArray(dataBytes);
    }