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.