EventArgsT1, T2 Constructor |
http://www.emgu.com
Create a generic EventArgs with two values
Namespace:
Emgu.TF.Util
Assembly:
Emgu.TF.World (in Emgu.TF.World.dll) Version: 1.13.1.435 (1.13.1.435)
Syntaxpublic EventArgs(
T1 value1,
T2 value2
)
Public Sub New (
value1 As T1,
value2 As T2
)
public:
EventArgs(
T1 value1,
T2 value2
)
new :
value1 : 'T1 *
value2 : 'T2 -> EventArgs
Parameters
- value1
- Type: T1
The first value - value2
- Type: T2
The second value
See Also