实现接口但具有不同的 属性 名称

Implement interface but having different property names

虽然这很容易,但我在 VB.Net:

中有这样的代码
Sub Main
    
    Dim foo As IMyInterface(Of String) = New Cander()
    foo.Items.Add("Hello")
    Debug.WriteLine(foo.Items.First())
End Sub

Interface IMyInterface(Of Out T)
    ReadOnly Property Items As List(Of String)
End Interface

Public Class Cander
    Implements IMyInterface(Of String)

    Private _anyName As List(Of String)

    Public ReadOnly Property AnyName As List(Of String) Implements IMyInterface(Of String).Items
        Get
            If _anyName Is Nothing Then
                _anyName = New List(Of String)
            End If
            
            Return _anyName
        End Get
    End Property
    
End Class

所以我可以在界面 Items 属性 和 class AnyName 属性 中使用不同的名称。因此,如果我尝试将此代码转换为 C#,它应该是这样的:

public void Main()
{
    IMyInterface<string> foo = new Cander();
    foo.Items.Add("Hello");
    Debug.WriteLine(foo.Items.First());
}

// Define other methods and classes here
interface IMyInterface<out T>
{
    List<string> Items { get; }
}

public class Cander : IMyInterface<string>
{
    private List<string> _anyName;

    public List<string> AnyName //I don't know how to translate Implements IMyInterface(Of String).Items
    {
        get
        {
            if (_anyName == null)
                _anyName = new List<string>();

            return _anyName;
        }
    }
}

我不知道如何翻译 Implements IMyInterface(Of String).Items 代码。是一个基本问题,但我搜索了文档和其他答案,但找不到任何解决方案。也许它可以使用 Explicit Interface Implementation 但我找不到类似的解决方案。

在 C# 中可以吗?

是的,这是 C# 和 VB.NET 之间的差异之一,是的,您可以使用显式接口实现:

public class Cander : IMyInterface<string>
{
    private List<string> _anyName;

    public List<string> AnyName
    {
        get
        {
            if (_anyName == null)
                _anyName = new List<string>();

            return _anyName;
        }
    }
    List<string> IMyInterface<string>.Items => AnyName;
}

请注意,这并不完全等同于 VB.NET 版本:AnyName 成员不以任何方式实现 IMyInterface<string>.Items:我们正在做的是定义一个新的 属性 确实实现了 IMyInterface<string>.Items 但没有作为 Cander 的成员出现,它的 getter 调用了 AnyName.

如果Items既有getter又有setter,你就得写出稍微迂回一点的:

interface IMyInterface<out T>
{
    List<string> Items { get; set; }
}

public class Cander : IMyInterface<string>
{
    private List<string> _anyName;

    public List<string> AnyName //I don't know how to translate Implements IMyInterface(Of String).Items
    {
        get
        {
            if (_anyName == null)
                _anyName = new List<string>();

            return _anyName;
        }
        set => _anyName = value;
    }

    List<string> IMyInterface<string>.Items
    {
        get => AnyName,
        set => AnyName = value,
    }
}