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

[Missing <summary> documentation for "T:Tools.CollectionsT.GenericT.DictionaryWithEvents`2.RemovedEventHandler"]

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

Syntax

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

See Also