I am still far away from mastering C# but child in me pushing me to programming day by day.
When I making WinForm application I want to change and use lot of controls pragmatically.
What I do not understand is, When I need to set this.control keyword and when I should use just control.
Sample:
If I want to cgange text of my label I can write
mylabel.text = "Text for label"
or this.mylabel.tex = "TExt for my label"
Which of these is right way, Is there simple explanation when to use this keyword when using controls in WinForms, Such as datagrid, texlables and others