Localize() static private method

static private Localize ( String s ) : String
s String
return String
Exemplo n.º 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);
     }
 }
Exemplo n.º 2
0
 internal static String Localize(String s, String context)
 {
     return(JScriptCompiler.Localize(s, context, null));
 }
Exemplo n.º 3
0
 internal static String Localize(String s, CultureInfo culture)
 {
     return(JScriptCompiler.Localize(s, null, culture));
 }
Exemplo n.º 4
0
 internal static String Localize(String s)
 {
     return(JScriptCompiler.Localize(s, null, null));
 }