Monday, March 26, 2012

OOP question

What's the purpose of the following?

sealed classabstract class

Thanks.

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