我有一个数组列表,其中包含我自己的类的对象。我想从列表视图的 index = selectedindex 的数组列表中获取对象。
我试过这个:
TrackInformation t=(TrackInformation) SongList[listView1.SelectedIndices[0]];
TrackInformation
是我的班级,SongList
是一个 ArrayList 类型TrackInformation
。
listview1 不允许选择多个索引,所以我想要SelectedIndices
集合的第一个元素。
我得到ArgumentOutOfRangeException
它说“0”的值对“索引”无效。