gpt4 book ai didi

c# - 接口(interface)中的父/子关系

转载 作者:行者123 更新时间:2023-11-30 20:13:27 25 4
gpt4 key购买 nike

如果我有这样的界面:

public interface IAlbum
{
string Title { get; set; }
}

public interface ITrack
{
string Title { get; set; }
float Duration { get; set; }
}

将轨道列表添加到 IAlbum 界面的最佳方法是什么?如果我希望单独的轨道成为属性并且没有公开的轨道数组怎么办?

最佳答案

使用 indexer .具体来说:

    ITrack this[int trackIndex]
{
get;
}

关于c# - 接口(interface)中的父/子关系,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1575076/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com