ImplementsInterfaceFinder.ImplementsInterface C# (CSharp) Method

ImplementsInterface() private method

private ImplementsInterface ( TypeDefinition typeDefinition ) : bool
typeDefinition TypeDefinition
return bool
    bool ImplementsInterface(TypeDefinition typeDefinition)
    {
        return typeDefinition.Interfaces.Any(x => x.Name == "IFreezable");
    }