See the below image. IEnumerable<T>
inherits from IEnumerable
but there is no arrow between them. I've already enabled all filters but still can't make then appear. How can I do that?
What your seeing is normal behavior. C# allows for only single inheritance. Interfaces are not inherited--they're implemented. You won't have an inheritance arrow for interfaces in light of that definition.