I have a delegate
public delegate bool Controller_PDF_FileDone(object sender,
ControllerTaskEventArgs e);
And an event
public event Controller_PDF_FileDone On_Controller_PDF_FileDone;
I need to use this "event" to call the method, Please let me know how.
Thanks in advance