C# Fundamental Part 2
26. How are extension methods used in C#? Sample answer: Extension methods allow developers to add a method to existing types without changing the original source code. This allows them to extend the functionality of the method. An extension method is a static method and uses the <this> keyword. 27. How are user controls created …