Beef
Beef copied to clipboard
"Step Into" doesn't work correctly if it doesn't change the line
In the below code, if you step into TestStep and step into the recursion, the recursion will be skipped and it will be already in i = 10.
static void TestStep(int i = 0)
{
if (i < 10) TestStep(i + 1);
}
public static int Main(String[] args)
{
TestStep();
return 0;
}