2
public interface IFoo<TKey, FooEntity<TValue>> {
// stuff
}
我得到這個錯誤:
類型參數FooEntity是隱藏式FooEntity類型參數FooEntity是隱藏式FooEntity
public class FooEntity<T> {
private T foo;
}
我怎樣才能解決這一問題?
我希望能夠在其他地方實現IFoo接口。