I'm writing a generic class where I need to use Interlocked.
T test1, test2;
Interlocked.Exchange<T>(ref test1, test2);
This won't compile. So am I forced to use Exchange(Object, Object) instead even tho MSDN advices not to use it that way?
|
I'm writing a generic class where I need to use Interlocked.
This won't compile. So am I forced to use Exchange(Object, Object) instead even tho MSDN advices not to use it that way?
| |||
|
feedback
|
|
This will work, provided your generic class has the same constraints as From the docs for Interlocked.Exchange:
| |||
|
feedback
|