/ Published in: C#
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
namespace EventFirer { public delegate void DaHandler(string value); public class EventFirer { public event DaHandler DaEvent; public void FireEvent(string value) { if(DaEvent != null) DaEvent(value); } } }