P
Polaris
I noticed in the ASP.NET web application, as shown below, the "this" pointer
is used in the code generated by the Visual C# IDE. Anyone can explain why
it is necessary to use the "this" pointer here? Thanks!
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}
is used in the code generated by the Visual C# IDE. Anyone can explain why
it is necessary to use the "this" pointer here? Thanks!
private void InitializeComponent()
{
this.Load += new System.EventHandler(this.Page_Load);
}