Gets the data that will be declared.

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

Syntax

C#
public IList<T> Data { get; }
Visual Basic
Public ReadOnly Property Data As IList(Of T)
	Get
Visual C++
public:
property IList<T>^ Data {
	IList<T>^ get ();
}

Field Value

A IList<(Of <(<'T>)>)> of structures.

Contracts

Get

Ensures
Contract.Result<IList<T>>() != null

See Also