编译器错误 CS0229
“member1”和“member2”之间具有二义性
不同接口的成员具有相同的名称。 若要保留相同的名称,必须限定这些名称。 有关详细信息,请参阅接口。
备注
在某些情况下,通过 using 别名向标识符提供显式前缀,即可解决此二义性问题。
下面的示例生成 CS0229:
// CS0229.cs
interface IList
{
int Count
{
get;
set;
}
void Counter();
}
interface ICounter
{
double Count
{
get;
set;
}
}
interface IListCounter : IList, ICounter {}
class MyClass
{
void Test(IListCounter x)
{
x.Count = 1; // CS0229
// Try one of the following lines instead:
// ((IList)x).Count = 1;
// or
// ((ICounter)x).Count = 1;
}
public static void Main() {}
}