I have some code where I use a thread static object in C#.
[ThreadStatic]
private DataContext connection
I was wondering, in this case, what if any change would I get if I put the static modifier on the thread static context?
[ThreadStatic]
private static DataContext connection
With the first would there be one copy of the context per instance per thread, with the other only one copy per thread?