码迷,mamicode.com
首页 > 其他好文 > 详细

练习2014102202

时间:2014-10-22 09:57:08      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   ar   for   sp   div   2014   on   

/********************************************************************
@date     2014-10-22
@author   Tiger
@brief    语法
@details  foreach
********************************************************************/
using System;

class Demo
{
    static void Main()
    {
        string[] arr = new string[] { "ABC", "DEF", "GHI" };
        foreach (string elem in arr)
        {
            Console.WriteLine(elem);
        }
        Console.ReadLine();
    }
}

 

练习2014102202

标签:style   blog   color   ar   for   sp   div   2014   on   

原文地址:http://www.cnblogs.com/roronoa-zoro-zrh/p/4042201.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!