up vote 0 down vote favorite
share [g+] share [fb]

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?

link|improve this question

63% accept rate
feedback

1 Answer

up vote 7 down vote accepted

This will work, provided your generic class has the same constraints as Interlocked.Exchange<T>, namely, where T: class.

From the docs for Interlocked.Exchange:

This method only supports reference types

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.