Hello,
I have a method that I want to ignore the base method call. I have:
public class A : BaseA
{
public override void DoThis()
{
//Cust implementation code
base.DoThis();
}
}
I want to have typemock ignore base.DoThis(), while the derived class is called. Is that possible?
Thanks.