泛型类的扩展方法

发布于 2024-08-22 21:29:46 字数 483 浏览 6 评论 0原文

可能的重复:
C# - 通用扩展方法
如何编写 C# 扩展方法对于通用类型类

是否可以为泛型类声明扩展方法?

public class NeedsExtension<T>
{
    public NeedsExtension<T> DoSomething(T obj)
    {
        // ....
    }
}

Possible Duplicates:
C# -Generic Extension Method
How do you write a C# Extension Method for a Generically Typed Class

Is it possible to declare extension methods for generic classes?

public class NeedsExtension<T>
{
    public NeedsExtension<T> DoSomething(T obj)
    {
        // ....
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

浅浅淡淡 2024-08-29 21:29:46

扩展任何类

public static class Extensions
{
    public static T DoSomething<T>(this T obj)
    {
        //...
    }
}

扩展特定的泛型类

public static NeedExtension<T> DoSomething<T>(this NeedExtension<T> obj)
{
    //...
}

To extend any class

public static class Extensions
{
    public static T DoSomething<T>(this T obj)
    {
        //...
    }
}

To extend a specific generic class

public static NeedExtension<T> DoSomething<T>(this NeedExtension<T> obj)
{
    //...
}
嗫嚅 2024-08-29 21:29:46

是的,但您忘记了 this 关键字。查看 Queryable,它提供了集合上的所有 LINQ 运算符。

Yes, but you forgot the this keyword. Look at Queryable that provides all the LINQ operators on collections.

白色秋天 2024-08-29 21:29:46

当然

public static void SomeMethod<T>(this NeedsExtension<T> value) {
  ...
}

Sure

public static void SomeMethod<T>(this NeedsExtension<T> value) {
  ...
}
埋情葬爱 2024-08-29 21:29:46

如何编写通用类型类的 C# 扩展方法

public static class NeedsExtension<T>
{
    public static string DoSomething <T>(this MyType<T> v)
    {   return ""; }

    // OR
    public static void DoSomething <T>(this MyType<T> v)
    {   
         //...
    }
}

How do you write a C# Extension Method for a Generically Typed Class

public static class NeedsExtension<T>
{
    public static string DoSomething <T>(this MyType<T> v)
    {   return ""; }

    // OR
    public static void DoSomething <T>(this MyType<T> v)
    {   
         //...
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文