A
Anders Borum
Hello!
I'm wondering what the recommendations are for using the "this" keyword?
The problem is that I really like to use the "this" keyword, but it tends to
make the code more verbose (which some don't like). Your oppinion please?
...
internal void PageDeleted(Page page)
{
if (this.pages == null) { return; }
this.pages.InnerList.Remove(page.PageID);
}
Thanks in advance - it's greatly appreciated.
I'm wondering what the recommendations are for using the "this" keyword?
The problem is that I really like to use the "this" keyword, but it tends to
make the code more verbose (which some don't like). Your oppinion please?
...
internal void PageDeleted(Page page)
{
if (this.pages == null) { return; }
this.pages.InnerList.Remove(page.PageID);
}
Thanks in advance - it's greatly appreciated.