This is clearly not appears like it wouldn't be a best practice, but can someone explain why or how this works. Or recommend a good book to learn more.
//The constructor
public Page_Index() {
//create a local value
string currentValue = "This is the FIRST value";
//use the local variable in a delegate that fires later
this.Load += delegate(object sender, EventArgs e) {
Response.Write(currentValue);
};
//change it again
currentValue = "This is the MODIFIED value";
}
The value that is output is the second value "Modified". So what part of the compiler magic is making this work? Or is this just as simple as keeping track of the value on the heap and retrieving it again later?
[Edit]: Given some of the comments, changing the original sentence some...