Can anyone else explain this, (beginners approach). Thanks..
|
|
Extension Methods are just static methods in static classes that behaves like they were defined in other class. Example:
This is an extension method on System.String that takes two parameters: - string s : This is the instance variable - object otherParameter: You can have as many as you want including none You can call this method in two ways: Static way:
Extension Method way
In the second case it works as if the type string has an instance method called ExtensionMethodForStrings. Actually for the compiler the are equivalent. |
|||||
|
|
|||
|
|
|
An extension method is a static method in a static class whose first parameter is preceded by the keyword The C# compiler has some syntactic sugar that can convert a call of This question includes lots of examples of useful extension methods: |
||||
|
|
|
An extension method is a method that behaves (somewhat) like it is a member of a class, but it is not a member of that class. It can be called on members of that class, but has no reference to the internals of the class. Extension methods are static methods, and must be members of a static class.
The keyword "this" prior to the first parameter type identifies this as an extension method, and the class it extends. It would be used this way:
|
|||
|
|