我的班级 MyClass 中有这段代码:
public new MyClass this[int index]
{
get
{
if (Count > index)
{
return this[index];
}
//...MyActions...
return null;
}
}
在字符串...
return this[index]
...我有递归,但我需要在基类中使用属性。我不知道怎么做。
例子:
return base.this[index]
但我不能“覆盖”这个方法,只能设置“新”。我伤心
怎么做?对不起我的英语很差,谢谢