You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
StyleCop plugin is checking for new or override. I already changed this to compare the called member against the members of the declaring type. Will merge soon.
Copied from https://youtrack.jetbrains.com/issue/RSPL-6925
When applying code clean up with rule 1100 ticked, in some instances "base" is changed to "this" incorrectly.
We have a class which inherits from List and a new Add(T item) method
We have the last line calling base.Add(T item) which is changed to this.Add(T item)
This causes (caused !!!) us an infinite loop (unit tests missing........)
The text was updated successfully, but these errors were encountered: