Initializes a new instance of the Extern class.
            
Namespace: SharpAssembler.Core.InstructionsAssembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)
 Syntax
Syntax
| C# | 
|---|
| public Extern( string identifier, Int128 length ) | 
| Visual Basic | 
|---|
| Public Sub New ( _ identifier As String, _ length As Int128 _ ) | 
| Visual C++ | 
|---|
| public: Extern( String^ identifier, Int128 length ) | 
Parameters
- identifier
- Type: System..::..String
 The identifier of the external symbol.
- length
- Type: SharpAssembler.Core..::..Int128
 The length of the symbol.
 Exceptions
Exceptions
| Exception | Condition | 
|---|---|
| System..::..ArgumentNullException | identifier == null | 
| System..::..ArgumentOutOfRangeException | length < 0 | 
 Contracts
Contracts
| Requires | ||
|---|---|---|
| identifier != null 
 | ||
| length >= 0 
 | 





