// dnlib: See LICENSE.txt for more info namespace dnlib.IO { /// /// Represents a section in a file /// public interface IFileSection { /// /// Start offset of the section in the file /// FileOffset StartOffset { get; } /// /// End offset of the section in the file. This is one byte after the last /// valid offset in the section. /// FileOffset EndOffset { get; } } }