C# Класс TUP.AsmResolver.ASM.Operand

Represents an operand of an assembly instruction.
Показать файл Открыть проект Примеры использования класса

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

Метод Описание
Operand ( object value ) : System

Creates a new instance of an assembly operand.

Operand ( object value, OperandType type ) : System

Creates a new instance of an assembly operand.

Operand ( object value, OperandType type, int addition ) : System

Creates a new instance of an operand with an extra addition value.

ToString ( ) : string

Returns the string representation of the operand.

ToString ( bool virtualString ) : string

Returns the string representation of the operand.

Приватные методы

Метод Описание
ToAsmString ( bool virtualString ) : string

Описание методов

Operand() публичный Метод

Creates a new instance of an assembly operand.
public Operand ( object value ) : System
value object The value that's being used.
Результат System

Operand() публичный Метод

Creates a new instance of an assembly operand.
public Operand ( object value, OperandType type ) : System
value object The value that's being used.
type OperandType The way the value is being used.
Результат System

Operand() публичный Метод

Creates a new instance of an operand with an extra addition value.
public Operand ( object value, OperandType type, int addition ) : System
value object The value that's being used.
type OperandType The way the value is being used.
addition int An addition to the value
Результат System

ToString() публичный Метод

Returns the string representation of the operand.
public ToString ( ) : string
Результат string

ToString() публичный Метод

Returns the string representation of the operand.
public ToString ( bool virtualString ) : string
virtualString bool Indicates that the string value will be the virtual representation of the instruction.
Результат string