Gets or sets the virtual address where this section starts.

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

Syntax

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

Field Value

The virtual address used for all memory references within this section; or nullNothingnullptra null reference (Nothing in Visual Basic) to specify no virtual start address.

Remarks

Not all file formats and architectures support setting this member to a value other than nullNothingnullptra null reference (Nothing in Visual Basic).

This member is similar to the 'vstart' NASM section attribute.

See Also