Monday, 25 July 2011

Threads

Thread th = new Thread(Fill_IgGrid);
th.Priority = ThreadPriority.Normal;
th.IsBackground = true;

th.Start(_List); //object of the parameter (_Generic List)
or
th.Start(); // non of parameter

private void Fill_IgGrid()
{
 //------- Grid bind code
}

No comments:

Post a Comment