Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

修复将跨域继承的子类的成员函数作为委托传递时报异常 #758

Merged
merged 1 commit into from
Oct 23, 2023

Conversation

m1stm4o
Copy link
Contributor

@m1stm4o m1stm4o commented May 8, 2023

修复如下情况:

主工程:
class Base
{
public void Test(Action action)
{
}
}

热更工程:

class Sub : Base
{
Base _base;
void SubTest()
{
_base.Test(()=>SubTest2()); // 此行报错
}
void SubTest2()
{
}
}

@liiir1985 liiir1985 merged commit e997f03 into Ourpalm:master Oct 23, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants