When the application is running, but not broken into, typing in the member list is impossible. VS will always immediately come up with an error Edit and continue Changes are not allowed while code is running or if the option 'Break all processes when one process breaks' is disabled. ...
I dont see any reason why VS should think that I am trying to modify the code. I vaguely remember some thread about that some time ago? Has that beed addressed? Is is new or is it returned?
Yes, there was a thread about this. It turns out that the keystroke is being received by the IDE before we can get to it. Not much we can do about this. Sorry.
this is not new, it has been around for a while. some progress was made, but it is not a complete solution. you can use alt-m to open the list while the application is running without an error. if you stick to using the mouse to select from the list then there is no problem.
enter does select the current item, but you still get the error message.
if you disable edit and continue:
IDE tools menu -> Options -> Debugging -> Edit and Continue -> Enable Edit and Continue
then this stops the error message appearing. the root problem is the IDE is flagging the files as read only while the program is running, and is picking up the keys you type into the alt-m list.