如何在 IronRuby 中调用重载的泛型方法?
如何在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不必指定参数 IronRuby 将自动选择重载。
您必须获取该方法,然后给它一个类型参数。 接下来将参数传递给调用方法
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