+ 4
Which keyword is used in C# to avoid inheritance?
3 Answers
+ 7
In order to prevent a class in C# from being inherited, the keyword sealed isused.
+ 2
Similar to 'final' in Java when applied to classes. Cmiiw.
+ 1
'Sealed' class is used to avoid inheritance.