Gets the source of the operation.

Namespace: SharpAssembler.x86.Instructions
Assembly: SharpAssembler x86-64 (in SharpAssembler x86-64.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

C#
public Operand Source { get; }
Visual Basic
Public ReadOnly Property Source As Operand
	Get
Visual C++
public:
property Operand^ Source {
	Operand^ get ();
}

Field Value

An Operand; or nullNothingnullptra null reference (Nothing in Visual Basic).

Contracts

Get

Ensures
Contract.Result<Operand>() == null || (
					Contract.Result<Operand>() is EffectiveAddress ||
					Contract.Result<Operand>() is RegisterOperand)

See Also