Run() public method

public Run ( string args ) : int
args string
return int
Beispiel #1
0
 public static int Main(string[] args)
 {
     try {
         JScriptCompiler jsc = new JScriptCompiler();
         return(jsc.Run(args));
     }
     catch (Exception e) {
         Console.WriteLine(JScriptCompiler.Localize("INTERNAL COMPILER ERROR", e.Message));
         return(10);
     }
 }
Beispiel #2
0
  public static int Main(string[] args){

    try {
      JScriptCompiler jsc = new JScriptCompiler();
      return jsc.Run(args);
    }
    catch (Exception e) {
      Console.WriteLine(JScriptCompiler.Localize("INTERNAL COMPILER ERROR", e.Message));
      return 10;
    }
  }