Given the following, when is foo bound?
System.Timer t = new System.Timer( (a)=>{
var foo = Messages.SelectedItem as FooBar;
});
Is it bound then the anonymous method is executed, or when the method is defined?
|
|
|
|
|||
|
|
|
Never, because of the compile-time error you would get due the absence of a
Now when the callback runs it will use the |
|||||||||||||
|