How to Return a value from a thread? in .NET
|
I would use the BackgroundWorker approach and return the result in e.Result. EDIT: This is commonly associated with WinForms and WPF, but can be used by any type of .NET application. Here's sample code for a console app that uses BackgroundWorker:
Output:
|
|||||||||||
|
|
A thread isn't a method - you don't normally "return" a value. However, if you're trying to fetch a value back from the results of some processing, you have many options, the two main ones being:
It really depends on how you're creating the thread, and how you want to use it, as well as the language/framework/tools you're using. |
|||
|
|
|
Here is a simple example using a delegate ...
There's a terrific series on threading at Threading in C#. |
||||
|
|
|
One of the easiest ways to get a return value from a thread is to use closures. Create a variable that will hold the return value from the thread and then capture it in a lambda expression. Assign the "return" value to this variable from the worker thread and then once that thread ends you can use it from the parent thread.
|
|||
|
|
|
My favorite class, runs any method on another thread with just 2 lines of code.
usage
Beware that longFunctionComplete will NOT execute on the same thread as starthework. For methods that take parameters you can always use closures, or expand the class. |
||||
|
|
If you don't want to use a BackgroundWorker, and just use a regular Thread, then you can fire an event to return data like this:
|
|||
|
|
|
I came across this thread when also trying to obtain the return value of a method that gets executed within a Thread. I thought I would post my solution that works. This solution uses an class to store both the method to be executed (indirectly) and stores the returning value. The class can be used for any function and any return type. You just instantiate the object using the return value type and then pass the function to call via a lambda (or delegate). C# 3.0 Implementation
To use this code you can use a Lambda (or a delegate). Here is the example using lambdas:
VB.NET 2008 Implementation Anyone using VB.NET 2008 can't use lambdas with non-value returning methods. This affects the
|
||||
|
|
|
Threads do not really have return values. However, if you create a delegate, you can invoke it asynchronously via the Example:
|
||||
|
|
|
ThreadStart delegates in C# used to start threads have return type 'void'. If you wish to get a 'return value' from a thread, you should write to a shared location (in an appropriate thread-safe manner) and read from that when the thread has completed executing. |
|||
|
|
|
||||
|
|
