I need to share a value between threads without exceeding it's boundary. Does a static variable do this?
-
3What do you mean by "without exceeding its boundary?" – Jim Mischel Mar 22 '11 at 16:50
5 Answers
You mean you want the variable to be thread-local?
You can either use the [ThreadStatic]
attribute or the ThreadLocal<T>
class from .NET 4.
Personally I'd prefer ThreadLocal<T>
if you are using .NET 4 - but better still would be to avoid this sort of context if you can. Can you encapsulate the information into an instance which is used to start the thread, for example?

- 1,421,763
- 867
- 9,128
- 9,194
-
@Gik25: I would still try to design your code so it *didn't* rely on this. It will be clearer and easier to test if you explicitly give each object its context. – Jon Skeet Mar 24 '11 at 09:32
-
I've got a multithreaded application where every thread is dedicated to the elaboration of a set of input data that now are accessible as follow: `FornituraHelper dati_fornitura = workflow.TemporaryData["Fornitura"] as FornituraHelper;` My purpose is to easily access this data as follow: `FornituraHelper dati_fornitura = TemporaryData.Fornitura;` `TemporaryData.Fornitura` would be static, like Transaction.Current its shared all over the workflow. But since every thread executes a different WKF it must not overcome thread's limit (the ideal would be to be local to the WKF). – Revious Mar 24 '11 at 10:07
-
@Gik25: As I've said, you *could* use thread-locals for that, but I personally wouldn't. I would give each processing task the context explicitly. – Jon Skeet Mar 24 '11 at 10:11
Static variables are shared across multiple threads within an AppDomain. All threads will see, and act, upon the same instance of a static variable. As such, if you're using static, you will likely want to use some form of synchronization to protect the access of that variable.
If you want to have a thread-local variable, the ThreadLocal<T>
class makes this easy. It provides a means of generating and using data that is unique per thread.

- 554,122
- 78
- 1,158
- 1,373
You decorate it with the ThreadStaticAttribute
, to make the static variable share across only the thread it is initialized in.
Static variables by default are across all threads in an AppDomain.

- 63,413
- 11
- 150
- 187