This repository has been archived by the owner on Oct 11, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 416
8ca30929 1e2b 9ec1 c508 e373a45ef505
haplokuon edited this page May 6, 2023
·
1 revision
netDxf 3.0.0 Library
[Missing <summary> documentation for "T:netDxf.Collections.ObservableDictionary`2.RemoveItemEventHandler"]
Namespace: netDxf.Collections
Assembly: netDxf (in netDxf.dll) Version: 3.0.0
C#
public delegate void RemoveItemEventHandler(
ObservableDictionary<TKey, TValue> sender,
ObservableDictionaryEventArgs<TKey, TValue> e
)
VB
Public Delegate Sub RemoveItemEventHandler (
sender As ObservableDictionary(Of TKey, TValue),
e As ObservableDictionaryEventArgs(Of TKey, TValue)
)
C++
public delegate void RemoveItemEventHandler(
ObservableDictionary<TKey, TValue>^ sender,
ObservableDictionaryEventArgs<TKey, TValue>^ e
)
F#
type RemoveItemEventHandler =
delegate of
sender : ObservableDictionary<'TKey, 'TValue> *
e : ObservableDictionaryEventArgs<'TKey, 'TValue> -> unit