According to Microsoft, "Extension methods are a special kind of static method, but they are called as if they were instance methods on the extended type".
Is there a way to add an extension method that it called as if it was a static method? Or to do something else that has the same effect?
Edit: By which I mean "called as if it was a static method on the extended class". Sorry for the ambiguity.
According to Microsoft, "Extension methods are a special kind of static method, but they are called as if they were instance methods on the extended type".
Yes, extension methods are static methods. They can all be called in the normal way as static methods, as extension instance methods on the type they "extend", and they can even be called as extension methods on a null reference.
For example:
public static class Extensions {
public static bool IsNullOrEmpty(this string theString) {
return string.IsNullOrEmpty(theString);
}
}
// Code elsewhere.
string test = null;
Console.WriteLine(test.IsNullOrEmpty()); // Valid code.
Console.WriteLine(Extensions.IsNullOrEmpty(test)); // Valid code.
Edit:
Is there a way to add an extension method that it called as if it was a static method?
Do you mean you want to call, for example, string.MyExtensionMethod()? In this case, no, there is no way to do that.
Extension methods are static methods. You don't need to do anything.
The only thing that distinguishes an extension method from any other static method is that it can be called as if it were an instance method in addition to being called normally as a static method.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With