Specifies the type of symbol a label creates.
Namespace: SharpAssembler.Core.InstructionsAssembly: SharpAssembler Core (in SharpAssembler Core.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
| C# |
|---|
public enum LabelType |
| Visual Basic |
|---|
Public Enumeration LabelType |
| Visual C++ |
|---|
public enum class LabelType |
Members
| Member name | Value | Description | |
|---|---|---|---|
| Private | 0 | A private symbol. This is the default. | |
| Weak | 1 | A weak public symbol. | |
| Public | 2 | A strong public symbol. | |
| ToSymbolType | Converts a LabelType to the corresponding SymbolType. |