Like the the title says, i cannot inherit a class and have interfaces.

class A
{
}

interface B
{
}

class C : A, B -> Error
{
}

I know that D doesn't support multiple classes, but that means i cannot mix a class and an interface?

Reply via email to