コード例 #1
0
        public static string CompileJavaCode(string fname, string code)
        {
            var srcFile = Path.Combine(JavaTempPath, fname);

            IOServices.WriteFile(srcFile, code);
            return(javac(srcFile));
        }