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
Version:
CoreCLR 2.1.0 and Desktop CLR 4.7.1
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
Notes
The IP is remapped once from IL offset 8 to 8.
IL delta:
Copied from dotnet/roslyn#24622
The text was updated successfully, but these errors were encountered:
@davmason: Assigning to David for execution on 2.1 first.
Sorry, something went wrong.
No branches or pull requests
Version:
CoreCLR 2.1.0 and Desktop CLR 4.7.1
Steps to Reproduce:
// j++;
Console.WriteLine(i)
is reached and then step over (F10).Expected Behavior:
Actual Behavior:
Notes
The IP is remapped once from IL offset 8 to 8.
IL delta:
Copied from dotnet/roslyn#24622
The text was updated successfully, but these errors were encountered: