|
by luisabreu via LA.NET [EN] on 8/31/2010 9:02:45 AM
I’ve already written a little bit about extension methods in the past. However, since I’ve decided to create a new basics series, I think that I probably should go back and write about it again. I guess that the first thing I need to do is define the what. In other words, *what* is an extension method? An extension method is a static method that you can invoke using instance method syntax. Here’s a quick example: namespace StringHelpers {
public static class StringExtension {
//don
... [ read more ]
|
|