+ 1
what is solution for this ?
Fill in the blanks to derive a class B from class A and prevent class B from being inherited. _____ A { } ______class B A { }
2 odpowiedzi
+ 1
you already made this post
https://www.sololearn.com/Discuss/321242/?ref=app
+ 1
class A {
}
sealed class B : A {
}