Modifies the context and constructs an emittable representing this constructable.

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

Syntax

C#
public override IEmittable Construct(
	Context context
)
Visual Basic
Public Overrides Function Construct ( _
	context As Context _
) As IEmittable
Visual C++
public:
virtual IEmittable^ Construct(
	Context^ context
) override

Parameters

context
Type: SharpAssembler.Core..::..Context
The Context in which the emittable will be constructed, and which may be modified.

Return Value

The constructed emittable.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptioncontext == null

Contracts

Requires
context != null

See Also