using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace index
{
class Worker
{
public string LastName;
public string FirstName;
public string MyBirth;
public string this[int index]
{
set
{
switch (index)
{
case 0: LastName = value;
break;
case 1: FirstName = value;
break;
case 2: MyBirth = value;
break;
default:
throw new ArgumentOutOfRangeException("index");
break;
}
}
get
{
switch(index)
{
case 0 : return LastName;
case 1 : return FirstName;
case 2 : return MyBirth;
default :
throw new ArgumentOutOfRangeException("index");
break;
}
}
}
}
class Program
{
static void Main(string[] args)
{
Worker a = new Worker();
Console.WriteLine("print the value:{0},{1},{2}",a[0],a[1],a[2]);
Console.WriteLine("please print your last name");
a[0] = Console.ReadLine();
Console.WriteLine("please print your first name");
a[1] = Console.ReadLine();
Console.WriteLine("please print your birthday");
a[2] = Console.ReadLine();
Console.WriteLine("Now,your name is {0},{1},and your birth is {2}",a[0],a[1],a[2]);
}
}
}
ReturnType this [type param1,...]
{
get
{
...
}
set
{
...
}
}