| 16 | namespace NodeRTUI |
| 17 | { |
| 18 | static class Program |
| 19 | { |
| 20 | /// <summary> |
| 21 | /// The main entry point for the application. |
| 22 | /// </summary> |
| 23 | [STAThread] |
| 24 | static void Main() |
| 25 | { |
| 26 | Application.EnableVisualStyles(); |
| 27 | Application.SetCompatibleTextRenderingDefault(false); |
| 28 | Application.Run(new MainForm()); |
| 29 | } |
| 30 | } |
| 31 | } |
nothing calls this directly
no outgoing calls
no test coverage detected