11 lines
273 B
VB.net
11 lines
273 B
VB.net
Namespace SimpleSorting
|
|
|
|
Public Interface ISimpleSortingHost
|
|
Inherits IList
|
|
|
|
Event OnInsert(sender As Object, e As SimpleSortingHostEventArgs)
|
|
Event OnRemove(sender As Object, e As SimpleSortingHostEventArgs)
|
|
End Interface
|
|
|
|
End Namespace
|