repo time
Dependencies: mbed MAX14720 MAX30205 USBDevice
HspGuiSourceV301/GuiDLLs/FileLog/FileLogExample/Program.cs@20:6d2af70c92ab, 2021-04-06 (annotated)
- Committer:
- darienf
- Date:
- Tue Apr 06 06:41:40 2021 +0000
- Revision:
- 20:6d2af70c92ab
another repo
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
darienf | 20:6d2af70c92ab | 1 | using System; |
darienf | 20:6d2af70c92ab | 2 | using System.Collections.Generic; |
darienf | 20:6d2af70c92ab | 3 | using System.Linq; |
darienf | 20:6d2af70c92ab | 4 | using System.Threading.Tasks; |
darienf | 20:6d2af70c92ab | 5 | using System.Windows.Forms; |
darienf | 20:6d2af70c92ab | 6 | |
darienf | 20:6d2af70c92ab | 7 | namespace FileLogExample |
darienf | 20:6d2af70c92ab | 8 | { |
darienf | 20:6d2af70c92ab | 9 | static class Program |
darienf | 20:6d2af70c92ab | 10 | { |
darienf | 20:6d2af70c92ab | 11 | /// <summary> |
darienf | 20:6d2af70c92ab | 12 | /// The main entry point for the application. |
darienf | 20:6d2af70c92ab | 13 | /// </summary> |
darienf | 20:6d2af70c92ab | 14 | [STAThread] |
darienf | 20:6d2af70c92ab | 15 | static void Main() |
darienf | 20:6d2af70c92ab | 16 | { |
darienf | 20:6d2af70c92ab | 17 | Application.EnableVisualStyles(); |
darienf | 20:6d2af70c92ab | 18 | Application.SetCompatibleTextRenderingDefault(false); |
darienf | 20:6d2af70c92ab | 19 | Application.Run(new Form1()); |
darienf | 20:6d2af70c92ab | 20 | } |
darienf | 20:6d2af70c92ab | 21 | } |
darienf | 20:6d2af70c92ab | 22 | } |