22
What do you find most frustrating about .NET?
(programming.dev)
Getting started
Useful resources
IDEs and code editors
Tools
Rules
Related communities
Wikipedia pages
More of a VS thing but the fact that you need to have copilot to have a good intellisense experience.
Let's say you are defining several
JsonPropertyName
attributes for your properties, while writing:Base intellisense will propose something completely unrelated for the property while with the github copilot extension, it will automatically recommend the correct property
PostId
after writing theJsonPropertyName
attribute.Same thing if you are defining Validators in the same file as the validated object:
With the copilot extension, after 2 or 3 files, it will automatically propose a validator class for autofill. Default intellisense? You got to type it out manually for every file.