ImplementsInterfaceFinder.ShouldSkipBaseType C# (CSharp) Method

ShouldSkipBaseType() private method

private ShouldSkipBaseType ( TypeDefinition type ) : bool
type TypeDefinition
return bool
    bool ShouldSkipBaseType(TypeDefinition type)
    {
        return type.BaseType == null || type.BaseType.FullName.StartsWith("System.Collections");
    }