This code works only once, i.e if the user comes online and goes offline. I want to loop in such a way that it keeps providing me information always. Such as: Online 11:00, Offline 11:30, Online 11:45, Offline 12:00.
How would I fix that?
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;
}
}
