[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.3.38916 (1.5.3.38916)

Syntax

C#
[ObsoleteAttribute("Use System.Action instead")]
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public delegate void dSub<T1>(
	T1 arg1
)
Visual Basic
<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
)
F#
[<ObsoleteAttribute("Use System.Action instead")>]
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
type dSub = 
    delegate of 
        arg1:'T1 -> unit
JScript
JScript does not support generic types or methods.

Parameters

arg1
Type: T1
First argument

Type Parameters

T1
Type of first argument

See Also