26
Foreach循环,确定哪个是循环的最后一次迭代
我有一个foreach循环,当从中选择了最后一项时,需要执行一些逻辑List,例如: foreach (Item result in Model.Results) { //if current result is the last item in Model.Results //then do something in the code } 我可以不使用for循环和计数器就知道哪个循环是最后一个吗?