예제 #1
0
파일: Host.cs 프로젝트: Diullei/Storm
    static void TestWithAsmHelper()
    {
        //Note usage of CreateObject("Script") is also acceptable

        var script = new AsmHelper(CSScript.Load("HelloScript.cs"))
                                           .CreateObject("*")
                                           .AlignToInterface<IScript>();

        script.Hello("Hi there...");
    }