Gets a collection of relocations in the current context.

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

Syntax

C#
public Collection<Relocation> RelocationTable { get; }
Visual Basic
Public ReadOnly Property RelocationTable As Collection(Of Relocation)
	Get
Visual C++
public:
property Collection<Relocation^>^ RelocationTable {
	Collection<Relocation^>^ get ();
}

Field Value

A Collection<(Of <(<'T>)>)> object.

Contracts

Get

Ensures
Contract.Result<Collection<Relocation>>() != null

See Also