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

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

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

Syntax

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

See Also