小编ima*_*huk的帖子

为什么这个电话不明确?

任何人都可以解释,为什么以下代码产生错误?(在Microsoft Visual Studio 2008中编译)

class Base1 {  };
class Base2 {  }

interface I1   {   }
interface I2   {   }

class C : I1, I2 { }

static class Program
{

    static T M1<T>(this T t, I1 x) where T : Base1
    {
        return t;
    }

    static T M1<T>(this T t, I2 x) where T : Base2
    {
        return t;
    }

    static void Main(string[] args)
    {
        Base1 b1 = new Base1();
        C c = new C();
        b1.M1(c);
    }
}
Run Code Online (Sandbox Code Playgroud)

错误是 …

c# extension-methods visual-studio-2008 c#-3.0

6
推荐指数
1
解决办法
288
查看次数