What's the purpose of the following?
sealed classabstract classThanks.
A sealed class means that it cannot be inherited by another class. An abstract class means that is must be inherited by another class, or an instance of it cannot be created by itself:
Abstract Class on MSDN
Sealed Class on MSDN
0 comments:
Post a Comment