有没有合理的理由说明为什么下面的代码在C#中不合法?
class X: IA, IB { public X test() // Compliation Error, saying that X is not IB { return this; } } interface IA { IB test(); } interface IB { };
.net c#
.net ×1
c# ×1