私はアプリの構造を持っています -
public abstract class a
{
}
//defined in a.dll
public abstract class b
{
}
//defined in b.dll
//Above 2 DLL reference added in main project where I want to derive both of this abstract classee like
public abstract class proj : a, b
{
}
両方ではなく、どちらか一方のみを導出できます。不足しているものや間違ったコーディングについて教えてください。