A small interactive C# console app for running ping tests with clearer live results and a simple session summary.
- Prompt for host, ping count, and timeout
- Show live ping results with address, latency, TTL, and bytes
- Display packet loss and latency summary at the end
Compile and run with:
csc .\better-ping.cs
.\better-ping.exeUsing Mono:
mcs better-ping.cs
mono better-ping.exeIf needed, install Mono first:
sudo apt update
sudo apt install mono-develThe default host is 8.8.8.8, and you can press q to quit after a session.