using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading; namespace EventClock { public class ClassWithDelegate { //封装了一个返回值为int的多重委托方法 public delegate int DelegateThatReturns(); public DelegateThat…