6.1. Class modifiers

A C# class can have the modifiers listed in Table 6.1.

Table 6.1. Valid class modifiers in C#
Class modifierComments
newOnly applicable for nested (inner) classes – Non-nested classes cannot have a new modifier (see section 6.9)
abstractMakes the class an abstract class (see section 6.8)
sealedMakes the class a sealed class – a sealed class is a final class in Java-speak (see section 6.7)
publicAccess modifiers – modify the accessibility of the class (see section 8.1)
protected
internal
private

Get From Java to C#: A Developer's Guide now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.