我敢肯定,这真的很简单,但是当涉及到接口时,我正在努力解决继承的问题。
给定以下类,如何在不覆盖基方法的情况下在特定于类 Parent 的接口中接口 Get 方法?
public class Base<T, T2>
{
public T Get<T, T2>(string key)
{
...
}
}
public class Parent : Base<Type1, Type2>, IParent
{
...
}
这是我的 atm,但我不断收到“接口成员 Type1 IParent.Get(string) 未实现”错误。
public interface IParent
{
Type1 Get(string key);
}