Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
见下图。IEnumerable<T>继承自,IEnumerable但它们之间没有箭头。我已经启用了所有过滤器,但仍然无法显示。我怎样才能做到这一点?
IEnumerable<T>
IEnumerable
你看到的是正常行为。C# 只允许单一继承。接口不是继承的——它们是被实现的。根据该定义,您不会有接口的继承箭头。