使用英语阅读

通过


编译器错误 CS0470

方法“method”不能为“type”类型实现“accessor”接口访问器。 使用显式接口实现。

访问器尝试实现接口时,会生成此错误。 必须使用显式接口实现。

示例

下面的示例生成 CS0470。

// CS0470.cs  
// compile with: /target:library  
  
interface I  
{  
   int P { get; }  
}  
  
class MyClass : I  
{  
   public int get_P() { return 0; }   // CS0470  
   public int P2 { get { return 0;} }   // OK  
}