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.  
  10. namespace WindowsFormsApplication1 {
  11. public partial class Form1 : Form {
  12. public Form1() {
  13. InitializeComponent();
  14. }
  15. private void Form1_Load(object sender, EventArgs e) {
  16. Form form1 = new Form();
  17. form1.Show();
  18. Form form2 = new Form();
  19. form2.Show();
  20. Form form3 = new Form();
  21. form3.Show();
  22. }
  23. }
  24. }
  25.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty