Is it possible to show the inherit relationship of two interfaces in a Visual Studio code map?

137 Views Asked by At

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?

enter image description here

1

There are 1 best solutions below

0
Jazimov On BEST ANSWER

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.