示例#1
0
        public static void Main(JSObject app, JSObject outputLog)
        {
            CheckHttpClient();
            service = new CompileService(httpClient, app);

            return;
        }
示例#2
0
        public static async void Main(JSObject compileLog, JSObject outputLog, JSObject csharpCode)
        {
            Console.WriteLine("Rolsyn test");

            var source = await GetSourceCode("RunClass.txt");

            csharpCode.SetObjectProperty("value", source);

            service = new CompileService(httpClient);

            return;
        }