# Saturday, October 07, 2006
« Testing a switch default statement with ... | Main | Presentation Layer Specific Objects »
Ayende posted about some IL wierdness he experienced while working on DynamicProxy2, which prompted me to go do some reading about IL.
  • The CLR is completely stack based, no registers.
  • st commands store things from the stack to memory.
  • ld commands load items from memory onto the stack.
A decent overview of IL (from 2001?!) is: http://msdn.microsoft.com/msdnmag/issues/01/05/bugslayer/

Comments are closed.