Gets or sets the content of the raw emittable.
Namespace: SharpAssembler.Core.InstructionsAssembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public byte[] Content { get; set; } |
| Visual Basic |
|---|
Public Property Content As Byte() Get Set |
| Visual C++ |
|---|
public: property array<unsigned char>^ Content { array<unsigned char>^ get (); void set (array<unsigned char>^ value); } |
Field Value
An array of bytes.
Exceptions
| Exception | Condition |
|---|---|
| System..::..ArgumentNullException | value == null |
Contracts
Get
| Ensures |
|---|
Contract.Result<byte[]>() != null |
Set
| Requires | ||
|---|---|---|
value != null
|