Declares data.

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

Syntax

C#
public class DeclareData<T> : Constructable
where T : struct, new()
Visual Basic
Public Class DeclareData(Of T As {Structure, New}) _
	Inherits Constructable
Visual C++
generic<typename T>
where T : value class, gcnew()
public ref class DeclareData : public Constructable

Type Parameters

T
The type of the declared data.

Contracts

Invariants
this.data != null

Inheritance Hierarchy

System..::..Object
  SharpAssembler.Core..::..Constructable
    SharpAssembler.Core.Instructions..::..DeclareData<(Of <(<'T>)>)>

See Also