Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
hspguisourcev301/HspGuiSourceV301/GuiDLLs/FileLog/FileLogExample/Program.cs@3:36de8b9e4b1a, 2021-04-10 (annotated)
- Committer:
- darienf
- Date:
- Sat Apr 10 03:05:42 2021 +0000
- Revision:
- 3:36de8b9e4b1a
ayoooo
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
darienf | 3:36de8b9e4b1a | 1 | using System; |
darienf | 3:36de8b9e4b1a | 2 | using System.Collections.Generic; |
darienf | 3:36de8b9e4b1a | 3 | using System.Linq; |
darienf | 3:36de8b9e4b1a | 4 | using System.Threading.Tasks; |
darienf | 3:36de8b9e4b1a | 5 | using System.Windows.Forms; |
darienf | 3:36de8b9e4b1a | 6 | |
darienf | 3:36de8b9e4b1a | 7 | namespace FileLogExample |
darienf | 3:36de8b9e4b1a | 8 | { |
darienf | 3:36de8b9e4b1a | 9 | static class Program |
darienf | 3:36de8b9e4b1a | 10 | { |
darienf | 3:36de8b9e4b1a | 11 | /// <summary> |
darienf | 3:36de8b9e4b1a | 12 | /// The main entry point for the application. |
darienf | 3:36de8b9e4b1a | 13 | /// </summary> |
darienf | 3:36de8b9e4b1a | 14 | [STAThread] |
darienf | 3:36de8b9e4b1a | 15 | static void Main() |
darienf | 3:36de8b9e4b1a | 16 | { |
darienf | 3:36de8b9e4b1a | 17 | Application.EnableVisualStyles(); |
darienf | 3:36de8b9e4b1a | 18 | Application.SetCompatibleTextRenderingDefault(false); |
darienf | 3:36de8b9e4b1a | 19 | Application.Run(new Form1()); |
darienf | 3:36de8b9e4b1a | 20 | } |
darienf | 3:36de8b9e4b1a | 21 | } |
darienf | 3:36de8b9e4b1a | 22 | } |