Skip to content

Instantly share code, notes, and snippets.

@bennidhamma
Created September 9, 2011 07:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bennidhamma/1205646 to your computer and use it in GitHub Desktop.
Save bennidhamma/1205646 to your computer and use it in GitHub Desktop.
IronRuby & Expando object returning null
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