foreach( 对集合每个元素的引用 in 集合 ){ } 举例: int[] a = new int[5]{1,2,3,4,5};foreach( int b in a ){ //b就是a中的每个元素} 注意:1.foreach只能对集合进行遍历.2.foreach在操作集合的时候,只能读不能改: 3.foreach操作Dictionary<T,T> Dictionary<string,string> dic = new Dictionary<string,string&…
2016-04-25 一.foreach( 对集合每个元素的引用 in 集合 ) { } int[] a = new int[5]{1,2,3,4,5}; foreach( int b in a ) { //b就是a中的每个元素 } ★ 注意: 1.foreach只能对集合进行遍历.不能用下标:冒泡排序不能用. 2.foreach在操作集合的时候,只能读不能改.保证集合稳定, 3.foreach操作Dictionary<T,T> //哈希表只能用foreach去遍历. Dictionary&l…
一.break与continue.这两个关键字一般放在循环的花括号里面使用.break——结束整个循环.continue——结束本次循环,进入下次循环. break的案例: using System; using System.Collections.Generic; using System.Text; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { ; for (; ; ) {…