gpt4 book ai didi

c# - C#中如何从arraylist中获取对象

转载 作者:太空狗 更新时间:2023-10-29 20:45:09 26 4
gpt4 key购买 nike

如何在 C# 中从数组列表中检索对象及其成员。

最佳答案

你是说这样?

ArrayList list = new ArrayList();
YourObject myObject = new YourObject();

list.Add(myObject);

YourObject obj = (YourObject)list[0];

循环:

foreach(object o in list)
{
YourObject myObject = (YourObject)o;
.......
}

关于 ArrayList 的信息

关于c# - C#中如何从arraylist中获取对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3110254/

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