I currently have a page that is declared as follows:
public partial class MyPage : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) {
I just recently switched to .NET 3.5 from 1.1, so I'm used to writing event handlers outside of Page_Load. My question is: are there any performance flaws or pitfalls that I have to consider when using the lambda method for this? I prefer this because it is, of course, more concise, but I do not want to sacrifice the results in order to use it. Thank.
performance c # lambda events
Christopher Garcia Mar 17 '10 at 18:56 2010-03-17 18:56
source share