EvilRoslynAnalyzers
EvilRoslynAnalyzers copied to clipboard
Feature idea: all classes must be marked as `partial`
In order to make our software open for extension, without the use of evil extension methods, we need to make sure we're using the partial
keyword everywhere just in case we want the option to modify them.
Not just classes, but other types too!
Funny Thing, in modern c# they tend to be partial because of source Generators.