Generic event argument.

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

Syntax

C#
[SerializableAttribute]
public class EventArgs<T1, T2> : EventArgs
Visual Basic
<SerializableAttribute>
Public Class EventArgs(Of T1, T2)
	Inherits EventArgs
Visual C++
[SerializableAttribute]
generic<typename T1, typename T2>
public ref class EventArgs : public EventArgs
F#
[<SerializableAttribute>]
type EventArgs<'T1, 'T2> =  
    class
        inherit EventArgs
    end

Type Parameters

T1
Argument type
T2
Argument type

Inheritance Hierarchy

System..::..Object
  System..::..EventArgs
    MonoSoftware.Core..::..EventArgs<(Of <(<'T1, T2>)>)>

See Also