从变化列表中取值
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从变化列表中取值相关的知识,希望对你有一定的参考价值。
List<int> list = new List<int>() {1,2,3,4,5,6,7,8,9,10 }; int listindex = 0; int GetValue() { if (list.Count > 0) { if (listindex >= list.Count) listindex = 0; listindex = listindex + 1; return list[listindex - 1]; } return -1; }
以上是关于从变化列表中取值的主要内容,如果未能解决你的问题,请参考以下文章