diff options
Diffstat (limited to 'Pinger/MyNet/Program.cs')
| -rw-r--r-- | Pinger/MyNet/Program.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Pinger/MyNet/Program.cs b/Pinger/MyNet/Program.cs new file mode 100644 index 0000000..17bd825 --- /dev/null +++ b/Pinger/MyNet/Program.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace MyNet { + static class Program { + /// <summary> + /// The main entry point for the application. + /// </summary> + [STAThread] + static void Main() { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new myNetForm()); + } + } +} |
