This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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? |
NewerOlder