/ Published in: C#
Expand |
Embed | Plain Text
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); } } }
You need to login to post a comment.
