ImplementsInterfaceFinder.ShouldSkipBaseType C# (CSharp) Méthode

ShouldSkipBaseType() private méthode

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