G
Guest
How do I declare an object to accept a TItem?
Also where is the documentation on TItem/TData/etc?
Here's the object:
Public Class DataEventArgs(Of TData)
Inherits EventArgs
Private innerData As TData
Here's the delgate which I want to pass a TItem
Public Delegate Sub EventListener(ByVal Sender As Object, ByVal e As
DataEventArgs(Of TItem)) <-- TItem doesn't work.
Also where is the documentation on TItem/TData/etc?
Here's the object:
Public Class DataEventArgs(Of TData)
Inherits EventArgs
Private innerData As TData
Here's the delgate which I want to pass a TItem
Public Delegate Sub EventListener(ByVal Sender As Object, ByVal e As
DataEventArgs(Of TItem)) <-- TItem doesn't work.