Hi all,
Is there any way to declare a C# static method accessible from IronRuby
as a regular Ruby method?
like:
public class MyCSharpClass {
public static string mymethod(string test) {
return test + "yes";
}
}
in ironruby:
puts mymethod("test")
--
Posted via http://www.ruby-forum.com/.