Hi,
I was wondering how in C# one would go about creating a worker thread, and after the Start Method is finished, have the thread preform another task.
For example:
I create a thread, and pass path[0].calculate.
Now once that is complete I would like to be able to on the same thread without creating a new one call path[1].calculate.
How would I go about doing this?
Thanks