0 votes
in C Sharp by
Give an example of using sealed class in C#?

1 Answer

0 votes
by

Below is the sample code of sealed class in C# -

class X {} 

sealed class Y : X {}

Sealed methods –

class A

{

 protected virtual void First() { }

 protected virtual void Second() { }

}

class B : A

{

 sealed protected override void First() {}

 protected override void Second() { }

}

If any class inherits from class “B” then method – “First” will not be overridable as this method is sealed in class B.

Related questions

+1 vote
+1 vote
asked Jan 20, 2020 in C Sharp by AdilsonLima
+1 vote
+1 vote
0 votes
asked Jun 16, 2020 in C Sharp by Hodge
...