fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using System.Diagnostics;
  10.  
  11. namespace WindowsFormsApplication1
  12. {
  13. public partial class Form1 : Form
  14. {
  15. public Form1()
  16. {
  17. InitializeComponent();
  18. }
  19.  
  20. private void Form1_Load(object sender, EventArgs e)
  21. {
  22. ProcessStartInfo processStartInfo1 = new ProcessStartInfo();
  23.  
  24. // 起動するアプリケーションを設定する
  25. processStartInfo1.FileName = "Notepad";
  26. processStartInfo1.WindowStyle = ProcessWindowStyle.Hidden;
  27. Process.Start(processStartInfo1);
  28. }
  29. }
  30. }
  31.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty