C# 如何将默认实现添加到覆盖另一个接口的接口
C# how to add a default implementation to an interface which is overriding another interface
例如:
interface IDottable : IGetDottable
{
bool try_dot_operator(string name);
// ... more methods
IDottable Dottable => this;
}
interface IGetDottable
{
IDottable Dottable {get;}
}
它给了我:
"'IDottable.Dottable' hides inherited member 'IGetDottable.Dottable'. Use the new keyword if hiding was intended.".
试试这个:
interface IDottable : IGetDottable
{
bool try_dot_operator(string name);
// ... more methods
IDottable IGetDottable.Dottable => this;
}
interface IGetDottable
{
IDottable Dottable {get;}
}
接口中的默认实现不生成方法 public。
例如:
interface IDottable : IGetDottable
{
bool try_dot_operator(string name);
// ... more methods
IDottable Dottable => this;
}
interface IGetDottable
{
IDottable Dottable {get;}
}
它给了我:
"'IDottable.Dottable' hides inherited member 'IGetDottable.Dottable'. Use the new keyword if hiding was intended.".
试试这个:
interface IDottable : IGetDottable
{
bool try_dot_operator(string name);
// ... more methods
IDottable IGetDottable.Dottable => this;
}
interface IGetDottable
{
IDottable Dottable {get;}
}
接口中的默认实现不生成方法 public。