To reproduce
- Create a C# console app.
using System;
namespace ConsoleFooBar
{
class Program
{
int abc = 10;
Program ()
{
int foo = 10;
}
public static void Main(string[] args)
{
var p = new Program ();
Console.ReadKey(true);
}
}
}
- Put a breakpoint in the constructor.
- Debug the application.
- In the Debugger Console type in this followed by the dot character.
Expected result
See completion for all members of the Program class.
Actual result:
No completion.
Looking at the DebuggerDotCompletion class the only time completion will be shown is if the debugger is within a method.
To reproduce
Expected result
See completion for all members of the Program class.
Actual result:
No completion.
Looking at the DebuggerDotCompletion class the only time completion will be shown is if the debugger is within a method.