Aaronontheweb / EvilRoslynAnalyzers

Has your boss gone insane and banned LINQ at work? Why stop there - use this Roslyn Analyzer to ban extension methods altogether!
https://www.reddit.com/r/dotnet/comments/1c4hz1z/linq_forbidden/
Apache License 2.0
31 stars 2 forks source link

Feature idea: ban immutable records #23

Open alexeyzimarev opened 4 months ago

alexeyzimarev commented 4 months ago

Every time someone does var r = r.With(...) a new instance is creates, which leads to excessive allocations and GC pressure. Therefore, records should be banned and all data structures must be mutable.