Newer
Older
TestStandRepository / Software / Arduino / libraries / Arduino-Libraries / CmdMessenger / CSharp / TemperatureControl / Program.cs
  1. using System;
  2. using System.Windows.Forms;
  3.  
  4. namespace DataLogging
  5. {
  6. static class Program
  7. {
  8. /// <summary>
  9. /// The main entry point for the application.
  10. /// Note that the main code is not in this class
  11. /// </summary>
  12. [STAThread]
  13. static void Main()
  14. {
  15. Application.EnableVisualStyles();
  16. Application.SetCompatibleTextRenderingDefault(false);
  17. Application.Run(new ChartForm());
  18. }
  19. }
  20. }