这是timer1
tick事件中的代码:
file_indxs = file_indxs - 1;
if (file_indxs < 0)
{
file_indxs = file_array.Length - 1;
}
file_array.Length - 1
是它将从数组末尾开始的末尾数组中的最后一个文件。
但我想做:
file_indxs = file_indxs + 1;
if (file_indxs == 0)
{
file_indxs = the beginning of the array. not the Length - 1
}