SergeyTeplyakov / ErrorProne.NET

Set of roslyn-based analyzers for catching common C# errors (inspired by Google's error-prone)
MIT License
886 stars 42 forks source link

Remove warnings for using non-readonly structs in readonly contexts #190

Closed SergeyTeplyakov closed 4 years ago

SergeyTeplyakov commented 4 years ago

With C# 8 these analyzers are no longer valid, because readonly members in C# 8 help eliminating a lot of hidden copies.

Fixes #183