Which of the following is built-in delegate in .Net?
5 points
public delegate void Action();
public delegate void Predicate(object sender);
public delegate void EventHandler(object sender, EventArgs e);
None of the above.