如何在 IronRuby 中调用重载的泛型方法?

发布于 2024-07-22 05:09:36 字数 355 浏览 6 评论 0原文

如何在 IronRuby 中调用重载的泛型方法?

我有一个具有以下方法的 .NET 类。 (请注意,这些方法是静态的)

Factory.cs
----
public static T CreateService<T>()
public static T CreateService<T>(string serviceName)

ironruby_sample.rb
----
service = Factory.create_service[ISomeService]

=> 产生错误“错误的参数”

顺便说一句,我正在使用 IronRuby 0.5。

How can I invoke overloaded generic method in IronRuby?

I have a .NET class with the following methods. (Take note that the methods are static)

Factory.cs
----
public static T CreateService<T>()
public static T CreateService<T>(string serviceName)

ironruby_sample.rb
----
service = Factory.create_service[ISomeService]

=> produces error "wrong arguments"

BTW, I'm using IronRuby 0.5.

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

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

发布评论

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

评论(1

给我一枪 2024-07-29 05:09:36
Factory.method(:create_service).of(System::String).call(serviceName)

您不必指定参数 IronRuby 将自动选择重载。
您必须获取该方法,然后给它一个类型参数。 接下来将参数传递给调用方法

Factory.method(:create_service).of(System::String).call(serviceName)

You don't have to specify the argument IronRuby will select the overload automatically.
You have to grab the method and then give it (a) type parameter(s). Next you pass the arguments to the call method

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