首页 > Windows开发 > 详细

C#语法基础_foreach

时间:2021-07-05 15:30:25      阅读:16      评论:0      收藏:0      [点我收藏+]

C#语法基础_foreach

遍历数组中元素

foreach(type var in arrayname){
    ...
}

例子

class Program
    {
        static void Main(string[] args)
        {
            int[] intlist = { 1, 2, 3, 4, 5 };
            foreach(int num in intlist)
            {
                Console.WriteLine(num   );
            }
        }
    }
// 1
// 2
// 3
// 4
// 5
// 

C#语法基础_foreach

原文:https://www.cnblogs.com/moyutime/p/14971979.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!