我需要有一些代表在我的类。
我想使用接口来“提醒”我设置这些委托。
怎么做?
我的班级是这样的:
public class ClsPictures : myInterface
{
// Implementing the IProcess interface
public event UpdateStatusEventHandler UpdateStatusText;
public delegate void UpdateStatusEventHandler(string Status);
public event StartedEventHandler Started;
public delegate void StartedEventHandler();
}
我需要一个接口来强迫这些代表:
public interface myInterface
{
// ?????
}