Bridge

Action<(Of <(<'T1, T2>)>)> Delegate

Encapsulates a method that has two parameters and does not return a value.

Namespace:  System
Assembly:  Bridge (in Bridge.dll)

Syntax


[NameAttribute]
[IgnoreCastAttribute]
[IgnoreGenericAttribute]
[ExternalAttribute]
public delegate void Action<T1, T2>(
	T1 arg1,
	T2 arg2
)
<NameAttribute> _
<IgnoreCastAttribute> _
<IgnoreGenericAttribute> _
<ExternalAttribute> _
Public Delegate Sub Action(Of T1, T2) ( _
	arg1 As T1, _
	arg2 As T2 _
)
[NameAttribute]
[IgnoreCastAttribute]
[IgnoreGenericAttribute]
[ExternalAttribute]
generic<typename T1, typename T2>
public delegate void Action(
	T1 arg1, 
	T2 arg2
)

Type Parameters

T1
The type of the first parameter of the method that this delegate encapsulates.This type parameter is contravariant. That is, you can use either the type you specified or any type that is less derived. For more information about covariance and contravariance, see Covariance and Contravariance in Generics.
T2
The type of the second parameter of the method that this delegate encapsulates.

Parameters

arg1
Type: T1
The first parameter of the method that this delegate encapsulates.
arg2
Type: T2
The second parameter of the method that this delegate encapsulates.