Пример #1
0
        private CVMSection InternalReadSection(MemoryMappedViewAccessor accessor, ref long pos)
        {
            CVMSection section;

            accessor.Read(ref pos, 4, out section.tag);
            accessor.ReadBE(ref pos, out section.length);
            return(section);
        }