Skip to content

Instantly share code, notes, and snippets.

@bennidhamma
Created September 10, 2011 00:42
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/1207726 to your computer and use it in GitHub Desktop.
Save bennidhamma/1207726 to your computer and use it in GitHub Desktop.
IronRuby: Coercion error with String and MutableString
using System;
using System.Dynamic;
using IronRuby;
using IronRuby.Builtins;
using Microsoft.Scripting.Hosting;
using Microsoft.Scripting;
using System.Reflection;
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
d.foo 'test'
");
script.Execute ();
}
}
public class DynamicTestClass : DynamicObject
{
public override bool TryGetMember (GetMemberBinder binder, out object result)
{
result = null;
return true;
}
public override bool TryInvokeMember (InvokeMemberBinder binder, object[] args, 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