Util.cs
470 Bytes
using System.Threading;
using System.Windows.Forms;
namespace update_
{
public class Util
{
UpdateView f1;
public Util(UpdateView f)
{
this.f1 = f;
}
public bool checkNet()
{
f1.start();
return true;
}
public void start()
{
Thread.Sleep(500);
// MessageBox.Show("Olá ");
checkNet();
}
}
}