示例#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));
        }
示例#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);
    }