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
Describe the bug 在泛型函数内打断,无法正确截获. public void Chy() { TestChy(10); //断点1 Debug.Log(222222); }
public T TestChy(int x) { Debug.Log(x);//断点2 return default; }
To Reproduce 仅在“断点2”断点,无法截获 仅在“断点1”断点,能截获,且能单步到“断点2”
Expected behavior 仅在“断点2”断点,能截获
Unity Version 2020.3.36f1(非国行)
ILRuntime Version 2.0.2
The text was updated successfully, but these errors were encountered:
3ef13ca
No branches or pull requests
Describe the bug
在泛型函数内打断,无法正确截获.
public void Chy()
{
TestChy(10); //断点1
Debug.Log(222222);
}
public T TestChy(int x)
{
Debug.Log(x);//断点2
return default;
}
To Reproduce
仅在“断点2”断点,无法截获
仅在“断点1”断点,能截获,且能单步到“断点2”
Expected behavior
仅在“断点2”断点,能截获
Unity Version
2020.3.36f1(非国行)
ILRuntime Version
2.0.2
The text was updated successfully, but these errors were encountered: