C# 클래스 Microsoft.Cci.MutableCodeModel.CopyMemoryStatement

Represents the cpblk IL instruction, which copies a block of memory from one address to another. The behavior of this instruction is undefined if the source block overlaps the target block.
상속: Statement, ICopyMemoryStatement
파일 보기 프로젝트 열기: visualmutator/visualmutator 1 사용 예제들

공개 메소드들

메소드 설명
CopyMemoryStatement ( ) : System

Represents the cpblk IL instruction, which copies a block of memory from one address to another. The behavior of this instruction is undefined if the source block overlaps the target block.

CopyMemoryStatement ( ICopyMemoryStatement copyMemoryStatement ) : System

Makes a shallow copy of a statement that represents cpblk IL instruction, which copies a block of memory from one address to another.

Dispatch ( ICodeVisitor visitor ) : void

Calls the visitor.Visit(ICopyMemoryStatement).

메소드 상세

CopyMemoryStatement() 공개 메소드

Represents the cpblk IL instruction, which copies a block of memory from one address to another. The behavior of this instruction is undefined if the source block overlaps the target block.
public CopyMemoryStatement ( ) : System
리턴 System

CopyMemoryStatement() 공개 메소드

Makes a shallow copy of a statement that represents cpblk IL instruction, which copies a block of memory from one address to another.
public CopyMemoryStatement ( ICopyMemoryStatement copyMemoryStatement ) : System
copyMemoryStatement ICopyMemoryStatement
리턴 System

Dispatch() 공개 메소드

Calls the visitor.Visit(ICopyMemoryStatement).
public Dispatch ( ICodeVisitor visitor ) : void
visitor ICodeVisitor
리턴 void