C#遍历数组

Posted Ada萌萌的师姐

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#遍历数组相关的知识,希望对你有一定的参考价值。

Eg:

 1 using System;
 2 using System.Collections.Generic;
 3 using System.Linq;
 4 using System.Text;
 5 
 6 namespace ConsoleApplication1
 7 {
 8     class Program
 9     {
10         static void Main(string[] args)
11         {
12             //声明数组. 第一种方法. 声明并分配元素大小.
13             int[] Myint = new int[30];
14             Myint[0] = 30;
15             Myint[1] = 50;
16             // 以此类推, 起始下标为0
17             //-------------------------------
18             // 声明数组,第二种方法, 声明并直接赋值,没有指定元素大小.
19             int[] Myint1 = { 20,10,50,65,18,90}; 
20             //------------------------------------------
21             //声明数组,第三种方法, 声明并分配大小,且赋值.
22             int[] i = new int[5] { 10, 20, 30, 40, 50 };
23 
24             // -----------------------------------------------
25             // foreach循环遍历数组..
26             int[] Sum = new int[50];
27             Random rd = new Random();
28            // 先用for循环给数组取随机数.
29             for (int s = 0; s <= Sum.Length - 1; s++)  // Sum.Length是数组的一个属性,Length代表数组的长度
30             {
31                 Sum[s] = rd.Next(100);
32             }
33            // 遍历数组输出
34             foreach (int t in Sum)
35             {
36                 Console.WriteLine(t);
37             }
38         }
39     }
40 }

 

以上是关于C#遍历数组的主要内容,如果未能解决你的问题,请参考以下文章

js数组遍历方法总结

C#通过Array.Clear部分清除数组的代码

NC41 最长无重复子数组/NC133链表的奇偶重排/NC116把数字翻译成字符串/NC135 股票交易的最大收益/NC126换钱的最少货币数/NC45实现二叉树先序,中序和后序遍历(递归)(代码片段

Java数组的--遍历

c#如何遍历一个list将值传到数组

C#如何遍历数组?