gpt4 book ai didi

c# - 具有两个类的数组

转载 作者:行者123 更新时间:2023-12-02 00:11:59 24 4
gpt4 key购买 nike

嗨,我正在做一项学校作业,我需要将此 JAVA 代码转换为 C#

private Map<ItemID, ProductDescription> descriptions = new HashMap()<ItemID, ProductDescription>;

是否可以直接转换?

我已经决定将 ItemID 变成 int,而 ProductDescription 是一个类。

最佳答案

是的,当然可以。请查看以下示例:

IDictionary<int, string> h = new Dictionary<int, string>();
h.Add(1, "a");
h.Add(2, "b");
h.Add(3, "c");

SortedList<int, string> s = new SortedList<int, string>();
s.Add(1, "a");
s.Add(2, "b");

我认为这就是您正在寻找的。

关于c# - 具有两个类的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12636198/

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