vote up 4 vote down star
1

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

flag

Could you utilize the XOR Swap? en.wikipedia.org/wiki/XOR_swap_algorithm – tylermac Sep 21 at 19:56

4 Answers

vote up 4 vote down check

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

link|flag
vote up 0 vote down

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

link|flag
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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