Created
June 22, 2010 00:11
-
-
Save hotgazpacho/447738 to your computer and use it in GitHub Desktop.
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
[RubyClass] | |
public class Foo { | |
private MutableString _bar = MutableString.Create(""); | |
[RubyMethod("bar")] | |
public static MutableString GetBar(RubyContext context, Foo self) { | |
return self._bar; | |
} | |
[RubyMethod("bar=")] | |
public static MutableString GetBar(RubyContext context, Foo self, MutableString value) { | |
self._bar = value; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment