The Execution Stack
The execution stack is where all the action happens in a .NET method. IL instructions all either operate on values currently on the execution stack, or copy values to and from the execution stack. However, the stack isn't generally used for storage of values throughout a method's execution; that's what local variables are for. As an example, here's a commented outline of the IL corresponding to the following C# method:
public static int AddFive(int value) {
int newValue = value + 5;
return newValue;
}
.method public static int32 AddFive(int32 'value') {
.maxstack 2
// declare 1 local variable
.locals init ([0] int32 newValue)
Read more: Simple-talk