Understanding Sealed and Abstract classes using C#
February 8th, 2009
0 Comments
Sealed and Abstract are keywords in C#. They have a special meaning and difference even though there is a wide similarity between these two terms. When a base class is declared with sealed keyword, then that class cannot be extended. This is same as final keyword in Java. Listing 1 public...


