反思+林克+类型铸造

发布于 2024-11-06 14:40:04 字数 789 浏览 1 评论 0原文

我需要将类型转换为最后一行的 (of type)

cbo.DataSource = DirectCast(GetType(RFOPSEntities) _
                       .GetProperty(entityName & "s") _
                       .GetGetMethod() _
                       .Invoke(m_Entities, Nothing), ObjectSet(Of ACAmp)))
                       .OrderBy(Function(c As ACAmp)) c.SortOrder).ToList()

现在我需要这样做:

cbo.DataSource = DirectCast(GetType(RFOPSEntities) _
                            .GetProperty(entityName & "s") _
                            .GetGetMethod() _
                            .Invoke(m_Entities, Nothing), ObjectSet(Of Type.GetType("ACAmp"))).OrderBy(Function(c As Type.GetType("ACAmp")) c.SortOrder).ToList()

Type.GetType("ACAmp") 不是 goog,但类型可以通过字符串传递。如何 ?

I need to cast the type into the (of type) on last line

cbo.DataSource = DirectCast(GetType(RFOPSEntities) _
                       .GetProperty(entityName & "s") _
                       .GetGetMethod() _
                       .Invoke(m_Entities, Nothing), ObjectSet(Of ACAmp)))
                       .OrderBy(Function(c As ACAmp)) c.SortOrder).ToList()

Now I need to do semeting like that:

cbo.DataSource = DirectCast(GetType(RFOPSEntities) _
                            .GetProperty(entityName & "s") _
                            .GetGetMethod() _
                            .Invoke(m_Entities, Nothing), ObjectSet(Of Type.GetType("ACAmp"))).OrderBy(Function(c As Type.GetType("ACAmp")) c.SortOrder).ToList()

The Type.GetType("ACAmp") is not goog but the type could be pass by string. How ?

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

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

发布评论

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

评论(1

北方。的韩爷 2024-11-13 14:40:04

你想做的事是不可能的。通用参数 - (Of XYZ) - 需要在编译时知道,但 GetType("ACAmp") 在运行时执行。

What you are trying to do is impossible. Generic parameters - (Of XYZ) - need to be known at compile time, but GetType("ACAmp") is executed at runtime.

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