Initializes a new instance of the Define class

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

Syntax

C#
public Define(
	string identifier,
	LabelType labelType,
	Func expression
)
Visual Basic
Public Sub New ( _
	identifier As String, _
	labelType As LabelType, _
	expression As Func _
)
Visual C++
public:
Define(
	String^ identifier, 
	LabelType labelType, 
	Func^ expression
)

Parameters

identifier
Type: System..::..String

[Missing <param name="identifier"/> documentation for "M:SharpAssembler.Core.Instructions.Define.#ctor(System.String,SharpAssembler.Core.Instructions.LabelType,System.Func`2)"]

labelType
Type: SharpAssembler.Core.Instructions..::..LabelType

[Missing <param name="labelType"/> documentation for "M:SharpAssembler.Core.Instructions.Define.#ctor(System.String,SharpAssembler.Core.Instructions.LabelType,System.Func`2)"]

expression
Type: System..::..Func<(Of <(<'T, TResult>)>)>

[Missing <param name="expression"/> documentation for "M:SharpAssembler.Core.Instructions.Define.#ctor(System.String,SharpAssembler.Core.Instructions.LabelType,System.Func`2)"]

See Also