public static string CompileJavaCode(string fname, string code) { var srcFile = Path.Combine(JavaTempPath, fname); IOServices.WriteFile(srcFile, code); return(javac(srcFile)); }