Advertisement
Advertisement
| 03.19.2008 at 09:53AM PDT, ID: 23254321 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: |
using System.Threading; // Namespace for Thread class
...
Thread t = new Thread(new ThreadStart(TheLongRunningTask)); // Creates the new thread
t.Start(); // Begins the execution of the new thread
...
private void TheLongRunningTask()
|