使用扩展方法覆盖(或隐藏)方法?

发布于 2024-08-11 12:26:38 字数 583 浏览 3 评论 0原文

可能的重复:
C#中有没有办法用扩展方法重写类方法?

是否可以 覆盖影子新 在 C# 中)带有扩展方法的实例方法?

Possible Duplicate:
Is there any way in C# to override a class method with an extension method?

Is it possible to override or shadow (new in C#) instance methods with extension methods?

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

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

发布评论

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

评论(1

青衫儰鉨ミ守葔 2024-08-18 12:26:38

否。来自 MSDN

您可以使用扩展方法来扩展类或接口,但不能覆盖它们。永远不会调用与接口或类方法具有相同名称和签名的扩展方法。在编译时,扩展方法的优先级始终低于类型本身定义的实例方法。

No. From MSDN:

You can use extension methods to extend a class or interface, but not to override them. An extension method with the same name and signature as an interface or class method will never be called. At compile time, extension methods always have lower priority than instance methods defined in the type itself.

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