C# 클래스 AsmResolver.FileSegment

Represents a generic file segment in a windows image.
파일 보기 프로젝트 열기: JerreS/AsmResolver 1 사용 예제들

공개 메소드들

메소드 설명
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