获取列表框中的项目索引c#

时间:2012-06-19 09:02:49

标签: c#

我正在尝试获取列表框中每个项目的索引 这是我的代码

           foreach (ListItem lstItem in lstCostCenter.Items)
           {
               int x = lstCostCenter.Items.IndexOf(lstItem);

           }

但每次只返回0。

请有人帮助我。

由于 Gulrej

1 个答案:

答案 0 :(得分:6)

为什么不使用for循环?

for (int i = 0; i < lstCostCenter.Items.Count; i++)
{
    ListItem lstItem = lstCostCenter.Items[i];
}

当前项目的索引为i