Initializes a new instance of the SymbolTable class.

Namespace: SharpAssembler.Core.Symbols
Assembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public SymbolTable(
	IEnumerable<Symbol> symbols
)
Visual Basic
Public Sub New ( _
	symbols As IEnumerable(Of Symbol) _
)
Visual C++
public:
SymbolTable(
	IEnumerable<Symbol^>^ symbols
)

Parameters

symbols
Type: System.Collections.Generic..::..IEnumerable<(Of <(<'Symbol>)>)>
The items to add to this collection.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionsymbols == null

Contracts

See Also