私のアプリケーションでは、次のコードを使用して app.config でコードからプロセスを開始します
Process proc = Process.Start(@"c:\windows\system32\notepad.exe");
実行中にapp.configファイルを2、3回変更する必要があります。app.config ファイルを停止して変更し、プロセスを再起動する必要がないので、どうすればよいのか疑問に思っています。
別の投稿で見た次のコードがあります。
// Load the app.config file
XmlDocument xml = new XmlDocument();
xml.Load(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile);
// Do whatever you need, like modifying the appSettings section
// Save the new setting
xml.Save(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile);
プロセスがまだ実行されている間に行われている新しい設定を保存する最後の行かどうか疑問に思っていますか? またはプロセスを再起動する必要がありますか? 私の目標は、プロセスを再起動し続ける必要がないところです。ありがとう