Posts

Showing posts from 2017

Extension Method in C#

Important points for the use of extension methods: An extension method must be defined in a top-level static class. An extension method with the same name and signature as an instance method will not be called. Extension methods cannot be used to override existing methods. The concept of extension methods cannot be applied to fields, properties or events. Overuse of extension methods is not a good style of programming.