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
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
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