此代码只工作一次,即用户上线和下线时。我想以这样一种方式循环,它总是不断地为我提供信息。如:线上11:00、线下11:30、线上11:45、线下12:00。
我将如何解决这个问题?
bool showed =false;
bool nshowd =false;
for (; ; )
{
//chech_online() <- this methods gives true if the person is online on FB
bool check_online =check_online();
if(check_online ==true && !showed)
{
Console.WriteLine("Online !!" +DateTime.Now);
showed = true;
}
else if(check_online ==false && !nshowd)
{
Console.WriteLine("OFFline !!" + DateTime.Now);
nshowd = true;
}
}