Gets the default operand size used by this architecture.

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

Syntax

C#
DataSize OperandSize { get; }
Visual Basic
ReadOnly Property OperandSize As DataSize
	Get
Visual C++
property DataSize OperandSize {
	DataSize get ();
}

Field Value

A member of the DataSize enumeration.

Remarks

The operand size may be overrided for individual instructions, depending on the architecture.

Contracts

Get

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

See Also