When NOT TO USE 'this' keyword?
- by LifeH2O
Sorry for asking it again, there are already 3 questions about this keyword. But all of them tell the purpose of 'this'.
My question is when not to use 'this' keyword .
OR
Is it all right to use this keyword always in situation like the code
class RssReader
{
private XmlTextReader _rssReader;
private XmlDocument _rssDoc;
private…