- ベストアンサー
C#VB、exeに埋め込んだexeの実行
C#でexeに埋め込みの画像を表示することはできますが、 exeに埋め込みのexeを実行することはできるのでしょうか。お願いします。
- みんなの回答 (2)
- 専門家の回答
質問者が選んだベストアンサー
テンポラリファイルに保存してキックするとか。 string file = Path.GetTempFileName().Replace(".tmp", ".exe"); byte[] bin = Properties.Resources.埋め込みのexe; using (FileStream fs = new FileStream(file, FileMode.Create)) fs.Write(bin, 0, bin.Length); Process p = Process.Start(file); p.WaitForExit(); File.Delete(file);
その他の回答 (1)
- yamadora2112
- ベストアンサー率0% (0/1)
回答No.2
VB.NET↓ Dim proc As Process = Process.Start("EXEパス", "引数")