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?
Asked
Active
Viewed 108 times
0

Just a learner
- 26,690
- 50
- 155
- 234
1 Answers
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