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
Likely a CLR bug: https://github.com/dotnet/coreclr/issues/16193
Steps to Reproduce:
using System; class Program { static void Main() { FuncTest(30); } static int FuncTest(int i) { Console.WriteLine(i); int j = 100; // conditional BP: "i == 20" j++; // j++; if (i == 1) { return 10; } else { return FuncTest(i - 1); } } }
// j++;
Console.WriteLine(i)
Expected Behavior:
30 29 28 27 26 25 24 23 22 21 20 19
Actual Behavior:
30 29 28 27 26 25 24 23 22 21 20 32765
The text was updated successfully, but these errors were encountered:
Investigation:
The IP is remapped once from IL offset 8 to 8.
IL delta:
Sorry, something went wrong.
No branches or pull requests
Likely a CLR bug: https://github.com/dotnet/coreclr/issues/16193
Steps to Reproduce:
// j++;
Console.WriteLine(i)
is reached and then step over (F10).Expected Behavior:
Actual Behavior:
The text was updated successfully, but these errors were encountered: