Sealed class can be extended using the extension method.
Showing posts with label How to extend the sealed class in c#?. Show all posts
Showing posts with label How to extend the sealed class in c#?. Show all posts
Thursday, November 19, 2015
Subscribe to:
Posts (Atom)
Write a program to reverse a string? using System; namespace ConsoleApp1 { class Program { static void Main(string[] args) ...
-
Throw and throw ex both are used to throw exception caught in catch block. Throw : It preserve the stack trace. Example: ...
-
Write a program to reverse a string? using System; namespace ConsoleApp1 { class Program { static void Main(string[] args) ...
-
This is interview question which is asked in many interviews. Let’s see what Singleton is. Singleton is design pattern, which allow us...