Program.cs 434 B

12345678910111213141516171819
  1. using System;
  2. using System.Windows.Forms;
  3. namespace _08_Interpolacja
  4. {
  5. static class Program
  6. {
  7. /// <summary>
  8. /// The main entry point for the application.
  9. /// </summary>
  10. [STAThread]
  11. static void Main()
  12. {
  13. Application.EnableVisualStyles();
  14. Application.SetCompatibleTextRenderingDefault(false);
  15. Application.Run(new Form1());
  16. }
  17. }
  18. }