when I do refactoring in visual studio (2019) and I say "generate field", it per default always adds the "private" keyword before the new field. I don't want this. How can I modify this behavior?
I am not event sure if this functionality is provided by visual studio itself or by roslinator.
private int foo; // no!
int foo; // yes!


