Gets or sets the size of the declared data.

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

Syntax

C#
public DataSize Size { get; }
Visual Basic
Public ReadOnly Property Size As DataSize
	Get
Visual C++
public:
property DataSize Size {
	DataSize get ();
}

Field Value

A member of the DataSize enumeration.

Contracts

Get

Ensures
Enum.IsDefined(typeof(DataSize), Contract.Result<DataSize>())
Contract.Result<DataSize>() != DataSize.None

See Also