/*烟台大学计算机学院学生
*All right reserved.
*文件名称:C#-—体验字段
*作者:杨飞
*完成日期:2014年9月2日
*版本号:v1.0
*对任务及求解方法的描述部分:C#-—体验字段
*我的程序:*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication5
{
class Team
{
string[] name = new string[8];
public string this[int index]
{
get
{
return name[index];
}
set {
name[index] = value;
}
}
}
class Program
{
static void Main(string[] args)
{
Team s = new Team();
s[0] = "李明";
s[1] = "周鹏";
s[2] = "人海";
for (int i = 0; i < 3; i++)
{
Console.WriteLine(s[i]);
}
Console.ReadKey();
}
}
}
运行结果:
心得体会:呵呵