Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 210 Bytes

MA0085.md

File metadata and controls

6 lines (5 loc) · 210 Bytes

MA0085 - Anonymous delegates should not be used to unsubscribe from Events

MyEvent += (sender, e) => { }
MyEvent -= (sender, e) => { }; // Non-compliant as it doesn't actually remove the handler