I have a user control which deals with fileupload. I have defined a delegate as follows
public delegate void FileUploadSuccess(T value,FileUploadTyp
I don't think this is possible.
Event is like an instance of a delegate (roughly speaking), and an instance is a concrete implementation ( of a generic or a non-generic class).
For better understanding of delegates and event, you can refer to this SO discussion.