为什么动态类型的扩展方法无法解析?

发布于 2025-01-01 13:24:45 字数 337 浏览 1 评论 0原文

可能的重复:
C# 中的扩展方法和动态对象

例如:

var obj = new byte[] { 1, 2, 3 };
dynamic dobj = obj;

dobj.Count(); // fails
Enumerable.Count(dobj); // works

Possible Duplicate:
Extension method and dynamic object in c#

For example:

var obj = new byte[] { 1, 2, 3 };
dynamic dobj = obj;

dobj.Count(); // fails
Enumerable.Count(dobj); // works

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

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

发布评论

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

评论(1

絕版丫頭 2025-01-08 13:24:45

它不起作用,因为知道要调用哪个扩展方法需要知道源代码在编译之前是什么样子(包括知道存在哪些 using 指令)。 At runtime this information is not available. The workaround you are using is a good approach.

It doesn't work because knowing which extension method to call requires knowing what the source code looked like before it was compiled (including knowing which using directives were present). At runtime this information is not available. The workaround you are using is a good approach.

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