Created
September 13, 2010 11:49
-
-
Save follesoe/577178 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
public static void UseSomeDynamicCode() | |
{ | |
IDoSomething wrapper = DynamicWrapper.Wrap<IDoSomething>("some_script.rb"); | |
int sum = wrapper.Add(5, 5); | |
} | |
public interface IDoSomething | |
{ | |
int Add(int a, int b); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment