C#数组是由System.Array类派生而来的引用对象,可以使用Array类的属性来对数组进行各种操作。
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;//引用命名空间
using System.Threading.Tasks;
namespace ConsoleApplication4
{
class Program
{
static void Main(string[] args)
{
string[,] friendName = new string[5, 2] { { "张三", "男" }, { "李四", "女" }, { "王五", "男" }, { "赵六", "男" }, { "老七", "男" } };
//正序输出
for(int i=0;i<=5;i++)
{
for(int j=0;j<=2;j++)
{
Console.Write(friendName[i,j]+"\t");
}
Console.WriteLine();
}
//倒序输出
for(int i=4;i>=0;i--)
{
for(int j=1;j>=0;j--)
{
Console.Write(friendName[i,j]+"\t");
}
Console.WriteLine();
}
Console.WriteLine("以下为Length这个属性:数组包含元素的总个数");
Console.WriteLine(friendName.Length);//一共10个元素,所以为10
Console.WriteLine(friendName.GetLowerBound(0));//括号内的0是维度,最基层的是0维度,是行
Console.WriteLine(friendName.GetUpperBound(0));
Console.WriteLine(friendName.GetUpperBound(1));
//查看4行2列的元素
Console.WriteLine(friendName(3,1));
Console.WriteLine(friendName.GetValue(3,1));
Console.ReadKey();
}
}
}