Posted on: 5/8/2014 4:38:35 PM | Views : 397

Hi ,
I am using below code ,
 Task[] taskArray = new Task[3];            for (int i = 0; i < taskArray.Length; i++)            {                taskArray[i] = Task.Factory.StartNew((Object obj) =>                {                    PNRMonitorJob pnrMonitorJob = obj as PNRMonitorJob;                    if (pnrMonitorJob == null)                        return;     &nbs ...

Go to the complete details ...