List<int> megalist;
int boxId;
boxId = ListofUniqueIDSpecificToDate.IndexOf(lstbox.SelectedIndex);<< this is wrong
我正在尝试通过使用 lstbox 上的选定索引在 megalist 中显示 ID
意思是,如果选择lstbox上的第一项,它将加载megalist上的第一项
List<int> megalist;
int boxId;
boxId = ListofUniqueIDSpecificToDate.IndexOf(lstbox.SelectedIndex);<< this is wrong
我正在尝试通过使用 lstbox 上的选定索引在 megalist 中显示 ID
意思是,如果选择lstbox上的第一项,它将加载megalist上的第一项