ExcelToolKit.BinaryFormat.XlsDirectoryEntry.XlsDirectoryEntry C# (CSharp) Method

XlsDirectoryEntry() public method

Constructor
public XlsDirectoryEntry ( byte bytes, XlsHeader header ) : System
bytes byte byte array representing current object
header XlsHeader
return System
        public XlsDirectoryEntry(byte[] bytes, XlsHeader header) {
            if (bytes.Length<Length)
                throw new ArgumentException(Errors.ErrorDirectoryEntryArray);
            m_bytes=bytes;
            m_header=header;
        }
XlsDirectoryEntry