C#索引器
Contents
class Program
{
private int[] test;
public int this[int a] {
get
{
return test[a];
}
set
{
if (test == null) {
test = new int[10];
}
test[a] = value;
}
}
static void Main(string[] args)
{
Program p = new Program();
p[5] = 10;
}
}