so i just moved to visual studio 2017 from 2013, and i have a rather annoying issue. so i have the following line of code:
device.Database = new Database();
my next line of code is
device.Database.Initiate();
in visual studio 2013 i simply start to write device. and then intellisense will autocomplete and highlight the Database and all i will need to do is simply press enter. however in 2017, this is not the case- it shows me the Database member but i need to press the down key or 'd' to highlight it and only then i can press enter, that's very frustrating to me. anyone has a clue on how to resolve this?
i tried playing with the Toggle Completion mode option, but this affects only the start of the line (the 'device' member).
