滚动到列表框上的最后一个索引后如何返回第一个索引

how back the the first index after scroling to the last index on listbox

我使用此代码移动到下一个索引 listBox1.SelectedIndex = listBox1.SelectedIndex +1; 但问题是当我在最后一个索引上时,我单击了下一个按钮,该按钮使该代码崩溃了,有什么建议可以在单击它后使下一个按钮返回到第一个索引吗??

select 下一项的代码:

if (listBox1.SelectedIndex < listBox1.Items.Count - 1)
{
    listBox1.SelectedIndex += 1;
}
else
{
    listBox1.SelectedIndex = 0;
}