ExcelToolKit.BinaryFormat.XlsDirectoryEntry.XlsDirectoryEntry C# (CSharp) Метод

XlsDirectoryEntry() публичный Метод

Constructor
public XlsDirectoryEntry ( byte bytes, XlsHeader header ) : System
bytes byte byte array representing current object
header XlsHeader
Результат System
        public XlsDirectoryEntry(byte[] bytes, XlsHeader header) {
            if (bytes.Length<Length)
                throw new ArgumentException(Errors.ErrorDirectoryEntryArray);
            m_bytes=bytes;
            m_header=header;
        }
XlsDirectoryEntry