Gets or sets the mandatory prefix.

Namespace: SharpAssembler.x86
Assembly: SharpAssembler x86-64 (in SharpAssembler x86-64.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public byte[] MandatoryPrefix { get; set; }
Visual Basic
Public Property MandatoryPrefix As Byte()
	Get
	Set
Visual C++
public:
property array<unsigned char>^ MandatoryPrefix {
	array<unsigned char>^ get ();
	void set (array<unsigned char>^ value);
}

Field Value

The mandatory prefix as an array of bytes. The default is an empty array.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionvalue == null

Contracts

Get

Ensures
Contract.Result<byte[]>() != null

Set

Requires
value != null

See Also