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); }}
错误是
The call is ambiguous between the following methods or propertIEs: ‘
ConsoleApplication1.Program.M1<ConsoleApplication1.Base1>(ConsoleApplication1.Base1,ConsoleApplication1.I1)
‘ and ‘ConsoleApplication1.Program.M1<ConsoleApplication1.Base1>(ConsoleApplication1.Base1,ConsoleApplication1.I2)
‘
我认为编译器可以使用“where”子句区分两种方法
解决方法 约束不是方法签名的一部分,因此不用于解决. 总结以上是内存溢出为你收集整理的c# – 为什么这个电话不明确?全部内容,希望文章能够帮你解决c# – 为什么这个电话不明确?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)