G
Guest
If I had the following classes,
public class A: B, ISomeInterface
{
}
public class C: A, IAnotherInterface
{
}
Then create an instance class from class C,
[Type] instance = new C();
What are the allowable types for C?
public class A: B, ISomeInterface
{
}
public class C: A, IAnotherInterface
{
}
Then create an instance class from class C,
[Type] instance = new C();
What are the allowable types for C?