OpenStory.Common.IO.LittleEndianBitConverter.ToDouble C# (CSharp) Method

ToDouble() public static method

Constructs a System.Double from bytes at a given offset in a byte array.
public static ToDouble ( byte array, int startIndex ) : double
array byte The array with the bytes to use.
startIndex int The offset at which the number starts.
return double
        public static double ToDouble(byte[] array, int startIndex)
        {
            return BitConverter.Int64BitsToDouble(FromBytes(array, startIndex, 8));
        }