gpt4 book ai didi

java - 从 C# 中的 List 获取对象变量

转载 作者:行者123 更新时间:2023-12-01 16:56:58 26 4
gpt4 key购买 nike

我有一个带有变量的类:

public class Items {
public string name;
public string ID;
}

当我有第一类对象列表时,我有第二类

public class MyClass {
public Items cheese;
public List <Items> listOfItems = new List ();
listOfItems.Add (cheese); // I know it should be in method or something but it's just an example
}

我想获取奶酪的名称,但使用我的列表,因为我的列表中有 20 多个项目。在Java中我可以这样做:

listOfItems.get(1).name; // 1 is an index

我怎样才能在C#中做到这一点?//请不要试图改进我的

最佳答案

listOfItems[0].name;

记住从 0 开始计数;)

除此之外,它的工作方式与 java 相同,只是语法略有不同

关于java - 从 C# 中的 List 获取对象变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31269336/

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