Gets or sets the Section in which the storage unit to be relocated resides.

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

Syntax

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

Field Value

The Section containing the storage unit.

Exceptions

ExceptionCondition
System..::..ArgumentNullExceptionvalue == null

Contracts

Get

Ensures
Contract.Result<Section>() != null

Set

Requires
value != null

See Also