Linux mint 14 で MONO (C#) を使用してアプリケーションを構築していますが、いくつか問題があります。オプションで外部コンソールを有効にしましたが、デバッグ中は非常にうまく機能していますが、デプロイ後 (デバッグ フォルダーで .exe を開く)、Console.ReadLine(); の直後にアプリケーションが終了します。アイデアはありますか?
public static void InitializeUI()
{
Console.WriteLine("On the bottom line enter the command \"START\" followed by a space and a number representing on how many hours to check for new posts. You can always stop the execution with Ctrl+C \r\n \r\nExample : START 6");
ParseCMD();
Console.ReadLine ();
}
private static void ParseCMD()
{
string cmd = Console.ReadLine();
string[] commands = cmd.Trim().Split(new string[] {" "},StringSplitOptions.RemoveEmptyEntries);
int delay = 0;
if (commands[0].ToLower() == "start" && int.TryParse(commands[1],out delay))
{
MainLogic.StartLogic(delay);
}
else
{
Console.WriteLine("Wrong command");
ParseCMD();
}
}
の後に終了します
string cmd = Console.ReadLine();