C# Class AsmResolver.FileSegment

Represents a generic file segment in a windows image.
Afficher le fichier Open project: JerreS/AsmResolver Class Usage Examples

Méthodes publiques

Méthode Description
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.

Method Details

Align() public static méthode

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.
Résultat uint

GetPhysicalLength() public abstract méthode

Computes the physical length of the segment.
public abstract GetPhysicalLength ( ) : uint
Résultat uint

Write() public abstract méthode

Writes the segment to a specific writing context.
public abstract Write ( WritingContext context ) : void
context WritingContext The context to use.
Résultat void