Gets or sets the type of symbol.

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

Syntax

C#
public SymbolType SymbolType { get; set; }
Visual Basic
Public Property SymbolType As SymbolType
	Get
	Set
Visual C++
public:
property SymbolType SymbolType {
	SymbolType get ();
	void set (SymbolType value);
}

Field Value

A member of the SymbolType enumeration.

Exceptions

ExceptionCondition
System.ComponentModel..::..InvalidEnumArgumentException!(Enum.IsDefined(typeof(SymbolType), value))

Contracts

Get

Ensures
Enum.IsDefined(typeof(SymbolType), Contract.Result<SymbolType>())

Set

Requires
Enum.IsDefined(typeof(SymbolType), value)

See Also