我试图只为单个定义的元素覆盖一个虚函数(不必创建另一个实现它的类,然后添加一个函数来覆盖它..)。
例子:
public class MyClass
{
public virtual bool ChangeStatus(String status)
{
return false;
}
}
void test()
{
//The following is written as an example of what I am trying to achieve & does not work
MyClass blah = new MyClass()
{
public override bool ChangeStatus(String status)
{
return true;
}
};
}
知道如何实现这一目标吗?
谢谢。