C# foreach循环

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Diagnostics;  
  4. using System.Linq;  
  5. using System.Text;  
  6. using System.Threading.Tasks;  
  7.   
  8. namespace _12foreach循环  
  9. {  
  10.     class Program  
  11.     {  
  12.         static void Main(string[] args)  
  13.         {  
  14.             //int[] nums = { 1, 2, 3, 4, 5, 6, 76, 7, 8, 23 };  
  15.             //for (int i = 0; i < nums.Length; i++)  
  16.             //{  
  17.             //    Console.WriteLine(nums[i]);  
  18.             //}  
  19.             //Console.WriteLine("=====================================");  
  20.             //foreach (var item in nums)  
  21.             //{  
  22.             //    Console.WriteLine(item);  
  23.             //}  
  24.             //Console.ReadKey();  
  25.             //Stopwatch sw = new Stopwatch();  
  26.             //int[] nums = new int[1000];  
  27.             ////00:00:04.2069219  
  28.             ////00:00:00.0000070  
  29.             ////00:00:00.0000121  
  30.             //sw.Start();  
  31.   
  32.             //foreach (var item in nums)  
  33.             //{  
  34.   
  35.             //}  
  36.             //for (int i = 0; i < nums.Length; i++)  
  37.             //{  
  38.   
  39.             //}  
  40.             //sw.Stop();  
  41.             //Console.WriteLine(sw.Elapsed);  
  42.             //Console.ReadKey();  
  43.   
  44.   
  45.   
  46.         }  
  47.     }  
  48. }  
shashou47

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: