EnviromentExit() public static méthode

public static EnviromentExit ( int i ) : void
i int
Résultat void
Exemple #1
0
 public void FatalError(string msg, Ast.ILNode node)
 {
     DoMessage(MType.Fatal, msg, node);
     StopErrorSystem();
     Program.EnviromentExit(1);
 }
Exemple #2
0
 public void FatalError(string msg)
 {
     DoMessage(MType.Fatal, msg, null);
     StopErrorSystem();
     Program.EnviromentExit(1);
 }