Modifies the context and constructs an emittable representing this constructable.

Namespace: SharpAssembler.Core
Assembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

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

Parameters

context
Type: SharpAssembler.Core..::..Context
The mutable Context in which the emittable will be constructed.

Return Value

The constructed emittable; or nullNothingnullptra null reference (Nothing in Visual Basic) when no emittable results from this constructable.

Exceptions

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

Contracts

See Also