asizikov / AsyncSuffix

Asynchronous methods naming checker for ReSharper
http://asizikov.github.io/2015/08/02/async-suffix-resharper-plugin/
MIT License
18 stars 3 forks source link

Exclude interface implementations from analysis #18

Closed asizikov closed 8 years ago

asizikov commented 8 years ago
    public interface IMyInterface
    {
        Task Foo(); //should not show warning here
    }

    public class Class : IMyInterface
    {
        public Task Foo()
        {
            return null;
        }
    }
asizikov commented 8 years ago

`IMethod.GetAllSuperMembers``