Posts by msmaldi • 131 points
1 post
-
13
votes4
answers1698
viewsA: Why use C#extension methods?
Extension methods allow you to add a method to a class without creating a new derivative type, some classes cannot be inherited as the String class and the values types (Structs). You might want to…