Skip to content

Instantly share code, notes, and snippets.

@bennidhamma
Created September 9, 2011 06:40
Show Gist options
  • Save bennidhamma/1205629 to your computer and use it in GitHub Desktop.
Save bennidhamma/1205629 to your computer and use it in GitHub Desktop.
IronRuby & DynamicObject.TryGetMember 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 (@"
d = DynamicTestClass.new
puts d.foo
");
script.Execute ();
}
}
public class DynamicTestClass : DynamicObject
{
public override bool TryGetMember (GetMemberBinder binder, out object result)
{
result = null;
return true;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment