[This is preliminary documentation and is subject to change.]

Universal delegate of procedure with 1 argument

Namespace:  Tools
Assembly:  Tools (in Tools.dll) Version: 1.5.2.0

Syntax

C#
[ObsoleteAttribute("Use System.Action instead")]
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public delegate void dSub<T1>(
	T1 arg1
)
Visual Basic (Declaration)
<ObsoleteAttribute("Use System.Action instead")> _
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Public Delegate Sub dSub(Of T1) ( _
	arg1 As T1 _
)
Visual C++
[ObsoleteAttribute(L"Use System.Action instead")]
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
generic<typename T1>
public delegate void dSub(
	T1 arg1
)
J#
J# supports the use of generic APIs, but not the declaration of new ones.
JScript
JScript does not support generic types or methods.

Parameters

arg1
Type: T1
First argument

Type Parameters

T1
Type of first argument

See Also