C#

C#で他のプロセスを実行する。

http://jeanne.wankuma.com/tips/process/waitforexit.htmlから。 // IEの実行形式ファイルの在り処 string filepath = "C:/Program Files/Internet Explorer/"; string filename = "IEXPLORE.EXE"; // IEを指定して実行 Process hProcess = Process.Start(f…

Programming Memo in C#

自作のExceptionクラスを作った場合、メンバ変数の状態を全て表示するToString()メソッドも実装しておきましょう。