Visual Studio Code Intellisense stopped to work on C# files
- Open the Command Palette (Ctrl + Shift + P)
- Type
Omnisharp: Restart OmniSharp
| [test]: Update test/* files | |
| [dist]: Changes to submodules, version bumps, updates to package.json | |
| [minor]: Small changes | |
| [doc]: Updates to documentation | |
| [fix]: Bug fixes | |
| [bin]: Update binary scripts associated with the project | |
| [refactor]: Refactor of existing code | |
| [nit]: Small code review changes mainly around style or syntax | |
| [feat]: New features |
Visual Studio Code Intellisense stopped to work on C# files
- Open the Command Palette (Ctrl + Shift + P)
- Type
Omnisharp: Restart OmniSharp
| // Person person = new Person.Builder().name("Name").surname("Surname").address("Address").build(); | |
| public class Person { | |
| private String name, surname, address; | |
| public Person(Builder builder) { | |
| this.name = builder.name; | |
| this.surname = builder.surname; | |
| this.address = builder.address; |