We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
建一个dll库,写一个ILogger接口,把这个dll引入到unity项目中。再在Unity项目中实现这个接口 例如 UnityLogger:ILogger { public void Info(string msg) { Debug.Log(msg); } } Case : 在dll里 如果有一个方法以调用接口的方式调用Info("xx"); 问题:不会出现日志!
The text was updated successfully, but these errors were encountered:
No branches or pull requests
建一个dll库,写一个ILogger接口,把这个dll引入到unity项目中。再在Unity项目中实现这个接口
例如
UnityLogger:ILogger
{
public void Info(string msg)
{
Debug.Log(msg);
}
}
Case : 在dll里 如果有一个方法以调用接口的方式调用Info("xx");
问题:不会出现日志!
The text was updated successfully, but these errors were encountered: