[Ironruby-core] RubyArray to List<T> ?
Ben Hall
ben2004uk at googlemail.com
Wed Jun 2 20:26:49 EDT 2010
Hello,
I have a block of code which returns me a RubyArray back into C# code.
While I can get access to the strongly typed objects inside using
reflection, I was wondering if there was any way to get the data back
as a List<T> ?
Example of the code at the moment:
RubyArray o = (RubyArray) filters[1].GetFilteredOutTweets(tweets);
Console.WriteLine(o);
Console.WriteLine((o[0] as Tweet).User);
GetFilteredOutTweets returns an object as when it returned List<Tweet>
it was causing it to fail.
Make sense?
Thanks
Ben
More information about the Ironruby-core
mailing list