[This is preliminary documentation and is subject to change.]

[Missing <summary> documentation for "T:Tools.CollectionsT.GenericT.ListWithEvents`1.AddedEventHandler"]

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
public delegate void AddedEventHandler(
	ListWithEvents<T> sender,
	ListWithEvents<(Of <(<'T>)>)>..::..ItemIndexEventArgs e
)
Visual Basic
Public Delegate Sub AddedEventHandler ( _
	sender As ListWithEvents(Of T), _
	e As ListWithEvents<(Of <(<'T>)>)>..::..ItemIndexEventArgs _
)
Visual C++
public delegate void AddedEventHandler(
	ListWithEvents<T>^ sender, 
	ListWithEvents<(Of <(<'T>)>)>..::..ItemIndexEventArgs^ e
)
F#
type AddedEventHandler = 
    delegate of 
        sender:ListWithEvents<'T> * 
        e:ListWithEvents<(Of <(<'T>)>)>..::..ItemIndexEventArgs -> unit
JScript
JScript does not support delegates.

See Also