Skip to content

Instantly share code, notes, and snippets.

@tracer8
tracer8 / gist:f8a56b9056919352d38883cab37c51af
Last active February 23, 2017 11:48
C# Delegate Generic ASK
// IEventParameterBase la 1 interface rỗng
public delegate void EventDelegateGeneric (T eventParam) where T : IEventParameterBase;
private delegate void EventDelegate(IEventParameterBase eventParam);
public EventDelegate myDelegate;
public void AddDelegate(EventDelegateGeneric eventDelegate) where T : IEventParameterBase
{
// Tai sao cai lamda express kia lai co the chuyen duoc tu EventDelegateGeneric thanh EventDelegate?