Visual Studio Code Intellisense stopped to work on C# files
The C# language features in VS Code are provided by a service called OmniSharp .
A couple of things you could try:
A) Restart OmniSharp
- Open the Command Palette (Ctrl + Shift + P)
Type
Omnisharp: Restart OmniSharp
B) View OmniSharp Logs
- Open Output Panel (Ctrl + ')
Select
OmniSharp Log
from the dropdown)
C) Enable OmniSharp Logging
Enabling C# debugger logging in Omnisharp
"configurations": [ { "...": "...", "logging": { "engineLogging": true } }, { "...": "..." } ]