fork download
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Windows.Forms;
  5.  
  6. namespace WindowsFormsApplication1
  7. {
  8. static class Program
  9. {
  10. /// <summary>
  11. /// アプリケーションのメイン エントリ ポイントです。
  12. /// </summary>
  13. [STAThread]
  14. static void Main()
  15. {
  16. Application.EnableVisualStyles();
  17. Application.SetCompatibleTextRenderingDefault(false);
  18. //Application.Run(new Form1());
  19.  
  20. //テスト用
  21. Form1 f = new Form1();
  22.  
  23. List<string> findWordList = new List<string>();
  24. findWordList.Add("00000");
  25. findWordList.Add("00001");
  26. findWordList.Add("00002");
  27. findWordList.Add("00003");
  28. findWordList.Add("00004");
  29.  
  30. findWordList.Add("00005");
  31. findWordList.Add("00006");
  32. findWordList.Add("00007");
  33. findWordList.Add("00008");
  34. findWordList.Add("00009");
  35. f.findWordList = findWordList;
  36. Application.Run(f);
  37. //テスト用
  38. }
  39. }
  40. }
  41.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty