我正在使用List
个平台。我需要做platforms.get(i).X
之类的事情
我找到了类似的东西,它被称为elementAt
,但它只允许你做platforms.elementAt(i).draw()
。如何检查列表中特定对象的变量?
答案 0 :(得分:0)
您可以使用数组索引表示法访问列表元素。
int x = platforms[i].X;
答案 1 :(得分:0)
您可以使用委托代表yourlist.Exists
if (stringlist.Exists(
delegate(String s)
{
return (s == "what you want to be found"); //this returns true if it is found.
}
))
{
//What you want to do if it is found.
}
查找有关使用列表和代理的更多信息,您应该偶然发现可以使用它来解决问题的方法。