show/hide this revision's text 2 edited tags
show/hide this revision's text 1

C#: delegate keyword vs. lambda notation

Once it is compiled, is there a difference between:

delegate { x = 0; }

and

() => { x = 0 }

?