The most neat and crystal clear tutorials that I've ever watched:)
@arkplato2186 Жыл бұрын
2023, still the most legit source of learning C# (concept explanation is just mind boggling), cannot thank enough
@JesseDietrichson Жыл бұрын
Thank you :)
@mathssr5 жыл бұрын
I am very much a beginner and was trying to understand get and set functionality. Very well articulated!!
@Halleluja357 жыл бұрын
Extremely well done tutorial!! Best C# tutorial I've watched on youtube! Please continue uploading!! Thanks alot! This was first one for me, looking forward to watching all your other ones too. // Daniel
@venkateshyadav3682 жыл бұрын
You taught us interface without knowing.. your great....plz upload advance c# tutorial please...Thank you for your help and support.
@jayteecollins12792 жыл бұрын
well done! like the way you explained everything! just subscribed 😀
@-Harambe7 жыл бұрын
great great great!! And someone spoke in English that I understood. :)
@sokon11042 жыл бұрын
great tutorial! that helped me. thanks!
@binjozoken60553 жыл бұрын
This was a fantastic video. Thanks.
@raimiralvarez69986 жыл бұрын
maybe instead of using get and set as methods u can use them creating public variables(properties) as below private string name; public string Name { get { return name; } set { if( name !=" " ) name = value; } }