AlbLib.XLD.XLDSubfile.XLDSubfile C# (CSharp) Метод

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

public XLDSubfile ( Stream stream, int length, short index ) : System
stream Stream /// Source stream. ///
length int /// Contents length. ///
index short /// Assigned index. ///
Результат System
        public XLDSubfile(Stream stream, int length, short index)
        {
            Data = new byte[length];
            stream.Read(Data, 0, length);
            Index = index;
        }

Same methods

XLDSubfile::XLDSubfile ( Stream stream, int length ) : System
XLDSubfile::XLDSubfile ( byte data, short index ) : System
XLDSubfile::XLDSubfile ( short index ) : System