Hi, :)
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. :)
Thanks a lot.