Created
September 9, 2011 07:02
-
-
Save bennidhamma/1205646 to your computer and use it in GitHub Desktop.
IronRuby & Expando object returning null
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Dynamic; | |
using IronRuby; | |
using IronRuby.Builtins; | |
using Microsoft.Scripting.Hosting; | |
using Microsoft.Scripting; | |
namespace DynamicTest | |
{ | |
class MainClass | |
{ | |
public static void Main (string[] args) | |
{ | |
var engine = Ruby.CreateEngine(); | |
engine.Execute ( | |
@"require 'mscorlib' | |
require 'DynamicTest.exe' | |
include DynamicTest | |
include System | |
"); | |
var script = engine.CreateScriptSourceFromString (@" | |
puts ex.foo | |
"); | |
dynamic ex = new ExpandoObject (); | |
ex.foo = null; | |
var scope = engine.CreateScope (); | |
scope.SetVariable ("ex", ex); | |
script.Execute (scope); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment