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