Program.cs 244 B

123456789101112131415
  1. using System;
  2. using System.Reactive.Linq;
  3. using System.Windows.Forms;
  4. namespace Excercise3
  5. {
  6. class Program
  7. {
  8. static void Main()
  9. {
  10. var frm = new Form();
  11. Application.Run(frm);
  12. }
  13. }
  14. }