Hi...
Can i create Sealed Class object in c# and define all property for sealed class?
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Anil KumarPosted May 22, 2012, 6:55 AM
Refer: Sealed Class Usage
Amulya DehuryPosted May 22, 2012, 4:37 AM
http://www.c-sharpcorner.com/UploadFile/mahesh/SealedClasses11142005063733AM/SealedClasses.aspx
VulpesPosted May 22, 2012, 4:25 AM
The only difference between a 'sealed' class and an 'ordinary' class is that you cannot inherit from the former. Otherwise, you can do all the things you would with an ordinary class except define new virtual members.