Create a generic EventArgs with two values

Namespace: Emgu.Util
Assembly: Emgu.Util (in Emgu.Util.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public EventArgs(
	T1 value1,
	T2 value2
)
Public Sub New ( _
	value1 As T1, _
	value2 As T2 _
)
public:
EventArgs(
	T1 value1, 
	T2 value2
)

Parameters

value1
T1
The first value
value2
T2
The second value

See Also