aboutsummaryrefslogtreecommitdiff
path: root/Pinger/MyNet/Program.cs
diff options
context:
space:
mode:
authorSyndamia <kami02882@gmail.com>2019-11-16 19:04:59 +0200
committerSyndamia <kami02882@gmail.com>2019-11-16 19:04:59 +0200
commit680e83d2972330206fa75171a00d50a1a80402d5 (patch)
tree2b765aa201d0c0705d1adcc6021df3de333749b6 /Pinger/MyNet/Program.cs
parentea771ca5f29fcdf3c401c1748b6fce9afcb0a3a7 (diff)
downloadShower-680e83d2972330206fa75171a00d50a1a80402d5.tar
Shower-680e83d2972330206fa75171a00d50a1a80402d5.tar.gz
Shower-680e83d2972330206fa75171a00d50a1a80402d5.zip
Did a small project called Pinger. The app pings a certain address and says the value.
Diffstat (limited to 'Pinger/MyNet/Program.cs')
-rw-r--r--Pinger/MyNet/Program.cs19
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());
+ }
+ }
+}