I need to have some delegates in my class.
I\'d like to use the interface to \"remind\" me to set these delegates.
How to?
My class look like this:
Just expose the delegate as a property
public delegate void UpdateStatusEventHandler(string status); public delegate void StartedEventHandler(); public interface IMyInterface { UpdateStatusEventHandler StatusUpdated {get; set;} StartedEventHandler Started {get; set;} }