You can't. Unlike C++, C# does not support multiple base classes.
What you can do is inherit the abstract class, and implement an interface that have been extracted from the base class - and instead of inherit from the base class, have a field of it's type (in short, use composition over inheritance):
public Class ABC : SomeAbstractClass, IBaseClass
{
private IBaseClass _base;
// initialize the IBaseClass in your constructor:
public ABC(int a, string b)
: base(a) // assume a constructor that takes an int on the abstract class
{
_base = new BaseClass(b); // assume a constructor that takes a string on the base class
}
// or a constructor for Dependency Injection:
public ABC(int a, IBaseClass baseClass)
: base(a)
{
_base = baseClass;
}
// implement the interface like this:
public int SomeIBaseClassMethod(string a, int b)
{
return _base.SomeBaseClassMethod(a, b);
}
public bool IsValid
{
get {return _base.IsValid;}
set {_base.IsValid = value}
}
}