Created
September 10, 2011 00:42
-
-
Save bennidhamma/1207726 to your computer and use it in GitHub Desktop.
IronRuby: Coercion error with String and MutableString
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; | |
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