C# Класс AsmResolver.FileSegment

Represents a generic file segment in a windows image.
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
Align ( uint value, uint align ) : uint

Aligns a specific offset to a specific boundary.

GetPhysicalLength ( ) : uint

Computes the physical length of the segment.

Write ( WritingContext context ) : void

Writes the segment to a specific writing context.

Описание методов

Align() публичный статический Метод

Aligns a specific offset to a specific boundary.
public static Align ( uint value, uint align ) : uint
value uint The value to align.
align uint The block length of the alignment to use.
Результат uint

GetPhysicalLength() публичный абстрактный Метод

Computes the physical length of the segment.
public abstract GetPhysicalLength ( ) : uint
Результат uint

Write() публичный абстрактный Метод

Writes the segment to a specific writing context.
public abstract Write ( WritingContext context ) : void
context WritingContext The context to use.
Результат void