Tôi cần có một số đại biểu trong lớp của tôi.
Tôi muốn sử dụng giao diện để "nhắc nhở" tôi đặt các đại diện này.
Làm thế nào để?
Lớp của tôi trông như thế này:
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();
}
Tôi cần một giao diện để buộc các đại biểu đó:
public interface myInterface
{
// ?????
}