Initializes a new instance of the BinObjectFile class.
Namespace: SharpAssembler.BinFormatAssembly: 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
Exception | Condition |
---|---|
System..::..ArgumentNullException | name == null |
System..::..ArgumentNullException | architecture == null |
Contracts
Requires | ||
---|---|---|
name != null
| ||
architecture != null
|