如何确定一种方法“是否是类型的扩展方法?”

发布于 2024-11-26 14:03:39 字数 441 浏览 1 评论 0原文

我想编写一个名为 IsExtensionMethod 的方法,其签名是:

public bool IsExtensionMethod(object anObject, string method)
{
    // if method was an extension for anObject return true else false
}

我该怎么做?

我尝试了以下代码,但在某些情况下它的返回值不正确:

public bool IsExtensionMethod(object anObject, string method)
{
    return anObject.GetType().GetMethods().Where(item => item.Name == method).Count() == 0;
}

I want to write a method named IsExtensionMethod that its signature is :

public bool IsExtensionMethod(object anObject, string method)
{
    // if method was an extension for anObject return true else false
}

How can i do it?

I tried for following code but in some cases it's return value is incorrect:

public bool IsExtensionMethod(object anObject, string method)
{
    return anObject.GetType().GetMethods().Where(item => item.Name == method).Count() == 0;
}

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

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

发布评论

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

评论(1

天气好吗我好吗 2024-12-03 14:03:39

编译器在编译扩展方法时会向其添加一个CompilerServices.ExtensionAttribute 属性。寻找这个属性。

http://www.hanselman.com/blog/HowDoExtensionMethodsWorkAndWhyWasANewCLRNotRequired.aspx

The compiler adds a CompilerServices.ExtensionAttribute attribute to extension methods when it compiles them. Look for this attribute.

http://www.hanselman.com/blog/HowDoExtensionMethodsWorkAndWhyWasANewCLRNotRequired.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文