Initializes a new instance of the BinObjectFile class.

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 BinObjectFile(
	string name,
	IArchitecture architecture
)
Visual Basic
Public Sub New ( _
	name As String, _
	architecture As IArchitecture _
)
Visual C++
public:
BinObjectFile(
	String^ name, 
	IArchitecture^ architecture
)

Parameters

name
Type: System..::..String
The name of the object file.
architecture
Type: SharpAssembler.Core..::..IArchitecture
The architecture.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionname == null
System..::..ArgumentNullExceptionarchitecture == null

Contracts

Requires
name != null
architecture != null

See Also