5
泛型中的<out T>与<T>
<out T>和之间有什么区别<T>?例如: public interface IExample<out T> { ... } 与 public interface IExample<T> { ... }
188
c#
generics
covariance