Osherove.ThreadTester.ThreadAction.ThreadAction C# (CSharp) Method

ThreadAction() public method

public ThreadAction ( Func del ) : System.Threading
del Func
return System.Threading
        public ThreadAction(Func del)
        {
            this.doCallback = del;
            thread = new Thread(startDelegate);
            thread.Name = "Thread job " + jobNumber++;
        }