Constructor.

Namespace: MonoSoftware.Core
Assembly: MonoSoftware.Core (in MonoSoftware.Core.dll) Version: 1.0.40.669 (1.0.40.669)

Syntax

C#
public EventArgs(
	T1 firstValue,
	T2 secondValue
)
Visual Basic
Public Sub New ( 
	firstValue As T1,
	secondValue As T2
)
Visual C++
public:
EventArgs(
	T1 firstValue, 
	T2 secondValue
)
F#
new : 
        firstValue : 'T1 * 
        secondValue : 'T2 -> EventArgs

Parameters

firstValue
Type: T1
First value
secondValue
Type: T2
Second value

See Also