C# 클래스 TUP.AsmResolver.ASM.Operand

Represents an operand of an assembly instruction.
파일 보기 프로젝트 열기: Rex-Hays/GNIDA 1 사용 예제들

공개 메소드들

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