Tuesday, May 05, 2009

Light-weight Threading ..

Today i wanted to create a light weight UI thread to make a button bliking. here is the sample code.

ThreadPool.QueueUserWorkItem(BlinkChatButton);


private void BlinkChatButton(object state)
{

while (canBlink)
{

Thread.Sleep(1000);
}


}

No comments: