/ 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(params string value) { DaEvent(value); } } }
You need to login to post a comment.
