Tim Pohlmann
Tim Pohlmann
### Is there an existing issue for the same bug? (If one exists, thumbs up or comment on the issue instead). - [x] I have checked the existing issues. ###...
### Description S3949 is supposed to not trigger when the `unchecked` keyword is present in the method containing the potential issue location. In some cases this exception is ignored. ###...
```csharp interface IInterface { void InterfaceMethod(); } class Base { protected virtual void BaseMethod() {} } class Sample : Base, IInterface { public async void InterfaceMethod() {} // Noncompliant protected...