Search code examples
visual-studiocode-map

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


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


Solution

  • 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.