0 Reputation Points
100% Quality Score
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
2 Posted Topics
This is for when not wanting it to return anything. Notice that when returning nothing, it will just exit out of the method. [CODE] public void A(int i) { if (i > 5) { // Skip the rest of A() and return B() B(i); return; } // Do stuff to …
Hi all, I am new to threading and was wondering if this works. I have a main thread that kicks off a background worker thread. It's function is to update my sql db. There are ten steps and after each step is completed, it will update the progressbar and move …
The End.
caovan