+ 3
Fill in the blanks to implement the A and B interfaces.
Question: interface A { } interface B { } class Test : A "BLANK" B { } What goes in the blank spot been stuck for a while and cant find anything in the lessons. Help would be appreciated, thanks!
3 Answers
+ 2
Fill in the blanks to implement the A and B interfaces.
interface A {
}
interface
B {
}
class Test
:
A
,
B {
}
+ 1
Thank you!