Getting all methods inside a script file
Posted
by ryudice
on Stack Overflow
See other posts from Stack Overflow
or by ryudice
Published on 2010-06-16T22:41:55Z
Indexed on
2010/06/16
23:32 UTC
Read the original article
Hit count: 145
After executing this code:
var runtime = IronRuby.Ruby.CreateRuntime();
var engine = IronRuby.Ruby.CreateEngine();
var scrope = engine.CreateScope();
engine.ExecuteFile("libtest.rb");
How can I get all the methods of a ruby class in c# code?
© Stack Overflow or respective owner