메소드 | 설명 | |
---|---|---|
Add ( |
Adds an instruction to the Assembly Instruction Collection.
|
|
First ( ) : |
Gets the first instruction of the collection.
|
|
GetAsmCode ( ) : string |
Returns the instruction list in string format.
|
|
GetInstructionByOffset ( long TargetOffset ) : |
Gets the assembly instruction in the application by its offset.
|
|
GetInstructionByVirtualOffset ( ulong TargetOffset ) : |
Gets the assembly instruction in the application by its virtual offset.
|
|
GetInstructionIndexByOffset ( long TargetOffset ) : int |
Gets the assembly instruction index by its offset
|
|
GetInstructionIndexByVirtualOffset ( ulong TargetOffset ) : int |
Gets the assembly instruction in the application by its virtual offset.
|
|
IndexOf ( |
Gets the index of a given instruction.
|
|
Insert ( int index, |
Inserts at the specified index an instruction into the collection.
|
|
Last ( ) : |
Gets the last instruction of the collection.
|
|
this ( int Index ) : |
Gets or sets the instruction at the specific index.
|
public Add ( |
||
instruction | The instruction to add. | |
리턴 | void |
public GetInstructionByOffset ( long TargetOffset ) : |
||
TargetOffset | long | The Offset of the instruction go get. |
리턴 |
public GetInstructionByVirtualOffset ( ulong TargetOffset ) : |
||
TargetOffset | ulong | The Offset of the instruction go get. |
리턴 |
public GetInstructionIndexByOffset ( long TargetOffset ) : int | ||
TargetOffset | long | The Offset of the instruction go get. |
리턴 | int |
public GetInstructionIndexByVirtualOffset ( ulong TargetOffset ) : int | ||
TargetOffset | ulong | The Offset of the instruction go get. |
리턴 | int |
public IndexOf ( |
||
instruction | The instruction to get the index from. | |
리턴 | int |
public Insert ( int index, |
||
index | int | The zero-based index at which value should be inserted. |
instruction | The instruction to insert into the collection. | |
리턴 | void |
public this ( int Index ) : |
||
Index | int | The index of the instruction to get or set. |
리턴 |