• ベストアンサー

C#VB、exeに埋め込んだexeの実行

C#でexeに埋め込みの画像を表示することはできますが、 exeに埋め込みのexeを実行することはできるのでしょうか。お願いします。

質問者が選んだベストアンサー

  • ベストアンサー
  • todo36
  • ベストアンサー率58% (728/1234)
回答No.1

テンポラリファイルに保存してキックするとか。 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)

回答No.2

VB.NET↓ Dim proc As Process = Process.Start("EXEパス", "引数")

参考URL:
http://ap.atmarkit.co.jp/bbs/core/vblab/28249

関連するQ&A