newbie iheritance

  • Thread starter Thread starter jed
  • Start date Start date
J

jed

Can you prevent a class from being inherited?
if you can please give some code
 
Can you prevent a class from being inherited?
if you can please give some code

Just add the keyword "sealed":

public sealed class MyClass
{
...
}
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top