public class cla1
{
public string cc1
get
return "test";
}
访问cc1
new cla1().cc1
我想这样访问
new cla1()["cc1"]
C#里是怎么写
public string this[string fieldName]