[3,4] is not an array of objects. It's a RubyArray. You can create a CLR array like this:
v = System::Array.of(Object).new(3) [1,2,3].each_with_index { |x,i| v[i] = x } Tomas -----Original Message----- From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Alex 2k8 Sent: Friday, January 09, 2009 8:17 AM To: ironruby-core@rubyforge.org Subject: [Ironruby-core] Calling overloaded methods Hello, C# public class Cls { public void foo(object a) { Console.WriteLine("foo #1"); } public void foo(object[] a) { Console.WriteLine("foo #2"); } } Ruby: Cls.new.foo(7) Cls.new.foo([3, 4]) Output: foo #1 foo #1 <-- Calling foo(object a) again So how can I call foo(object[] a)? - Alex -- Posted via http://www.ruby-forum.com/. _______________________________________________ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-core _______________________________________________ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-core