0

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

Just a learner
  • 26,690
  • 50
  • 155
  • 234

1 Answers1

1

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.

Jazimov
  • 12,626
  • 9
  • 52
  • 59