20 lines
458 B
C#
20 lines
458 B
C#
// dnlib: See LICENSE.txt for more info
|
|
|
|
namespace dnlib.IO {
|
|
/// <summary>
|
|
/// Represents a section in a file
|
|
/// </summary>
|
|
public interface IFileSection {
|
|
/// <summary>
|
|
/// Start offset of the section in the file
|
|
/// </summary>
|
|
FileOffset StartOffset { get; }
|
|
|
|
/// <summary>
|
|
/// End offset of the section in the file. This is one byte after the last
|
|
/// valid offset in the section.
|
|
/// </summary>
|
|
FileOffset EndOffset { get; }
|
|
}
|
|
}
|