In short, I have 2 main questions:
1 - Is there any possible way to use the Send()
method from the Ping
class indefinitely?
2 - Will this cause the computer to significantly slow down?
I'm making a program that will in short establish an average ping to a certain server and inform the user whenever the ping(ms) increases above a certain point over the average. Now, to accomplish this I would naturally have to have the program ping said server forever (until the program closes of course).
If there is no way I could do this forever, I can only think of having an unreasonably large for
loop or a while (true) {}
loop.
I'm just concerned this will cause significant strain on the user's computer. Can this be confirmed or am I just too cautious?