标签: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(); } }
标签:style blog color ar for sp div 2014 on
原文地址:http://www.cnblogs.com/roronoa-zoro-zrh/p/4042201.html