Gets or sets the address at which this symbol is defined.

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

Syntax

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

Field Value

An address, relative to the start of the section when IsAbsolute is falseFalsefalsefalse (False in Visual Basic); or when IsAbsolute is trueTruetruetrue (True in Visual Basic), relative to the start of memory. Otherwise, 0 when IsExtern is trueTruetruetrue (True in Visual Basic).

See Also