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

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

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

Syntax

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

See Also