Adds a range of symbols to the symbol table.
Namespace: SharpAssembler.Core.SymbolsAssembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public void AddRange( IEnumerable<Symbol> symbols ) |
| Visual Basic |
|---|
Public Sub AddRange ( _ symbols As IEnumerable(Of Symbol) _ ) |
| Visual C++ |
|---|
public: void AddRange( IEnumerable<Symbol^>^ symbols ) |
Parameters
- symbols
- Type: System.Collections.Generic..::..IEnumerable<(Of <(<'Symbol>)>)>
The symbols to add.
Exceptions
| Exception | Condition |
|---|---|
| System..::..ArgumentNullException | symbols == null |
Contracts
| Requires | ||
|---|---|---|
symbols != null
|