up vote 4 down vote favorite
1
share [g+] share [fb]

Is there CIL instruction to exchange the first two elements in the stack?

link|improve this question

79% accept rate
Could you utilize the XOR Swap? en.wikipedia.org/wiki/XOR_swap_algorithm – tylermac Sep 21 '09 at 19:56
feedback

4 Answers

up vote 5 down vote accepted

There is no single instruction exchange. However, using stloc, pop, and ldloc, you should be able to accomplish your exchange.

link|improve this answer
feedback

Looking at a list of CIL instructions there doesn't appear to be a single instruction that exchanges the two elements at the top of the stack. You'll have to do it the old pop/push way.

link|improve this answer
feedback

No. The only way to swap elements is to pop the top two elements to locals, then push them in reverse order.

link|improve this answer
feedback

For future reference, you can create an assembly that does what you want to learn the IL for, then view the assembly in Reflector. You can select the language you wish the code to be in, and IL is one of the options. I did this when trying to figure out how to code a dynamic method...

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.