5
제네릭의 <out T> vs <T>
차이점은 무엇이며 <out T>그리고 <T>? 예를 들면 다음과 같습니다. public interface IExample<out T> { ... } vs. public interface IExample<T> { ... }
189
c#
generics
covariance