W
weird0
Suppose i have two classes A and B:
class A
{
public method_a();
}
class B
{
public method_b();
}
if i want to have multiple inheritance in c# like C++ so i can have
access to both methods:
class C : public A,B
{
public method_c();
}
HOw can i achive that in c#?
class A
{
public method_a();
}
class B
{
public method_b();
}
if i want to have multiple inheritance in c# like C++ so i can have
access to both methods:
class C : public A,B
{
public method_c();
}
HOw can i achive that in c#?