首页 > 代码库 > delegate, event - 里面涉及的参数类型必须完全一致,子类是不行的

delegate, event - 里面涉及的参数类型必须完全一致,子类是不行的

public void TestF()
{
Test += Fun;
}

public void Fun(Person p) { }  // 如 Person变成 SubPerson,则报错。。public void Fun(SubPerson p) { }

public event Action<Person> Test;