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

Namespace: SharpAssembler.BinFormat
Assembly: SharpAssembler Bin File Format (in SharpAssembler Bin File Format.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

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

Parameters

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

Exceptions

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

Contracts

Requires
writer != null

See Also