程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> 關於C語言 >> C#中的數組使用

C#中的數組使用

編輯:關於C語言
方法一:
string[] str = new string[2];
       str[0]  = "a";
        str[1] =  "b";
        Response.Write(str[0].ToString());
        Response.Write(str[1].ToString());
 
方法二:
   string[] str = new string[] { "x", "xx", "xxx" };
        for (int i = 0; i < str.Length; i++)
        {
            Response.Write(str[i].ToString());
            Response.Write("<br>");
        }
        Response.Write("<br>");
 
方法三:
     int[,] str= new int[,] { { 1, 2, 3 }, { 2, 4, 5 }, { 4, 5, 6 } };
   
        Response.Write("<table>");
        for (int i = 0; i <= 2; i++)
        {
            Response.Write("<tr>");
            for (int x = 0;  x <= 2;  x++)
            {
                Response.Write("<td>" + str[i, x].ToString() + "</td>");
             
            }
            Response.Write("</tr>");
         
        }
        Response.Write("</table>");
方法三:
int[][] intx = new int[2][];
        intx[0] = new int[] { 1, 2, 3, 4 };
        intx[1] = new int[] { 5, 6, 7, 8 };
 
        Response.Write("<table>");
        for (int i = 0; i < 2; i++)
        {
            Response.Write("<tr>");
            for (int x = 0; x < 4; x++)
            {
                Response.Write("<td>" + intx[i][x].ToString() + "</td>");
 
            }
            Response.Write("</tr>");
 
        }
        Response.Write("</table>");
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved