For example, I define a class implementing some interface, press Ctrl + Dot => Implement Interface, and Intellisense generates following code:
public SomeType PropertyName
{
get
{
throw new NotImplementedException();
}
set
{
throw new NotImplementedException();
}
}
This is very annoying because I have to delete almost everything it generates and manually write
public SomeType PropertyName { get; set; }
Surely there are some templates that can be edited to fix this behavior, but I can't find them. I found information about snippets, but they are not related to Intellisense.
Does anybody know where they could be located?