考虑到一种方法
static IEnumerable<IComparable> q()
{
return new List<string>();
}
我正在尝试实现相同的目标,但是在我自己的班级上,结果收到转换错误cs0266
我尝试用这种方式return (Common<Message>)new A();
进行投射,但结果为InvalidCastException
interface Common<T> where T : Message
{
T Source { get; }
void Show();
}
interface Message
{
string Message { get; }
}
class AMsg : Message
{
public string Message => "A";
}
class A : Common<AMsg>
{
public AMsg Source => new AMsg();
public void Show() { Console.WriteLine(Source.Message); }
}
static Common<Message> test()
{
return new A(); //CS0266
}
该方法如何返回实现相同接口的不同泛型?