I have been coding last few months. Perhaps 7 months and I became flexible with basic things like , string manipulation, I/O , types , variables and so on....
In my project I used global variables always and I saw people uses property and stays away from global variables..
I don't see a point to use property get;set;
In my project I have a method executor and methods are been selected depending upon param and method type which I provide...
I read the data in to global var and then do execution by switch case ....I have scopes so I don't face any issue of variable override or any sort of issue like that..
But I see established projects has lots of property usage. Why they use? Also is the property value set is available in whole class that holds property ?
Thanks