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:
Since .NET 3.5 you can also use the System.Action delegates, without the need to declare your own type.
This would result in the following interface:
public interface myInterface { // Implementing the IProcess interface event Action UpdateStatusText; event Action Started; }