Gets or sets the opcode of the encoded instruction.
Namespace: SharpAssembler.x86Assembly: SharpAssembler x86-64 (in SharpAssembler x86-64.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C# |
---|
public byte[] Opcode { get; set; } |
Visual Basic |
---|
Public Property Opcode As Byte() Get Set |
Visual C++ |
---|
public: property array<unsigned char>^ Opcode { array<unsigned char>^ get (); void set (array<unsigned char>^ value); } |
Field Value
The opcode bytes of the instruction. The default is an empty array.
Exceptions
Exception | Condition |
---|---|
System..::..ArgumentNullException | value == null |
Contracts
Get
Ensures |
---|
Contract.Result<byte[]>() != null |
Set
Requires | ||
---|---|---|
value != null
|