Hi folks,
How can I implement the following in C#?
while(AppExitFl ag == false)
{
if(AppPausedFla g == true)
{
GetMessage();
// Process messages.
}
else
{
if(PeekMessage( ))
{
// Process messages.
}
// Do stuff...
}
}
I have a feeling you're gonna tell me this is impossible, I hope you tell me
I'm wrong. :-)
John.
How can I implement the following in C#?
while(AppExitFl ag == false)
{
if(AppPausedFla g == true)
{
GetMessage();
// Process messages.
}
else
{
if(PeekMessage( ))
{
// Process messages.
}
// Do stuff...
}
}
I have a feeling you're gonna tell me this is impossible, I hope you tell me
I'm wrong. :-)
John.
Comment