开发者

Why can't I create extension methods for static classes?

开发者 https://www.devze.com 2022-12-22 00:32 出处:网络
When I try to create an extension method for the File class, I get an error telling me that I cannot do this because the class is static. However, I don\'t 开发者_如何学编程see why this stops the crea

When I try to create an extension method for the File class, I get an error telling me that I cannot do this because the class is static. However, I don't 开发者_如何学编程see why this stops the creation of an extension method, what implication is there?

Thanks


Extension methods are called on an instance of an object.

myObj.ExtensionMethod();

If you have a static class, you can't have an instance of it. Therefore, there's nothing to call the extension method on.


Because an extension method by design must take an instance of the class it is extending as its first parameter. And obviously you can't pass an instance of File because it is a static class and cannot have instances.


Stated in reverse, if you look at the definition of any extension method, the first parameter is always the instance of the object upon which it is called evidenced by the this keyword. Logically this behaviour cannot work on a static class because there is no instance present.

Sample of an extension method - see first param this

public static class MyExtensions
{
    public static int WordCount(this String str)
    {
        return str.Split(new char[] { ' ', '.', '?' }, StringSplitOptions.RemoveEmptyEntries).Length;
    }
}   


Why can’t I create extension methods for static classes?

Because the C# dev team didn't implement that feature (yet). F# has chosen to implement it though.

Same thing for extension properties. F# has them and Boo has had them since (at least) 2006.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号