Assembles the object file and writes the resulting binary to the specified BinaryWriter.

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

Syntax

C#
public abstract void Assemble(
	BinaryWriter writer
)
Visual Basic
Public MustOverride Sub Assemble ( _
	writer As BinaryWriter _
)
Visual C++
public:
virtual void Assemble(
	BinaryWriter^ writer
) abstract

Parameters

writer
Type: System.IO..::..BinaryWriter
A BinaryWriter object.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionwriter == null

Contracts

See Also