C# Tutorial: Properties, Getters and Setters

Поделиться
HTML-код
  • Опубликовано: 2 сен 2019
  • In this lesson I go over properties, getters and setters, and how to use them.

Комментарии • 24

  • @binjozoken6055
    @binjozoken6055 2 года назад +7

    That was a great explanation. 1) You showed the wrong way(technically) of accessing fields from another class. 2) You showed the old way. 3) You showed the right way. 4) You showed the best way. Finally, C# getters and setters have become demystified. Thanks a ton for this.

  • @mohamedabdelaal8582
    @mohamedabdelaal8582 3 года назад +7

    I love how you explained all 3 approaches and mentioned which one is the best practice!

  • @ryangoods7949
    @ryangoods7949 16 дней назад

    Thanks for this, coming from C++ I was using the second method or the 'old way' which is why I looked for a video about getters and setters

  • @saitejapala3208
    @saitejapala3208 7 месяцев назад

    This is the clean and clarity explanation in all over the youtube

  • @maxospovat8959
    @maxospovat8959 2 года назад

    super helpful and cleared up any misconceptions I had from other videos which didn't show the differences thank you!

  • @codecakeee
    @codecakeee 2 года назад

    I like the way you explain things, Keen to watch your oop stuff!!! Hope you continue the journey.

  • @joehiker8114
    @joehiker8114 Год назад

    Thank you, i have been trying to get my head round {get, set} for so long. I figured it was something like this, but had never actually seen it explained.

  • @geodimi7742
    @geodimi7742 2 года назад

    great series, thanks again

  • @BlobifyYT
    @BlobifyYT 3 месяца назад +1

    can someone please explain why accessing fields the first way is bad or wrong?

  • @Nocturnes1984
    @Nocturnes1984 Год назад

    2022: Handy shortcuts are using prop and propfull
    Great tutorial!

    • @NPC_YOUTUBE_USER
      @NPC_YOUTUBE_USER Год назад

      do you know how to make propfull for my variables, variables that i have been created before

  • @lucasferreira8229
    @lucasferreira8229 Год назад

    Excellent!!

  • @ahtionpc4364
    @ahtionpc4364 3 года назад

    loved it thanks alot

  • @user-ig2kn8em3p
    @user-ig2kn8em3p 2 месяца назад

    Makes sense man

  • @mindurownbussines
    @mindurownbussines 3 года назад

    Thanks

  • @joebrooks3638
    @joebrooks3638 3 года назад

    I'm working on a code for make and model in c#. Opp and tdd exercise

  • @NPC_YOUTUBE_USER
    @NPC_YOUTUBE_USER Год назад

    do you know how to make propfull for my variables, variables that i have been created before

  • @ichig085
    @ichig085 3 года назад

    I'm new to coding and I'm learning C#. I have Visual Studio 2019 on my Mac and when I run a console program like Console.Write("Hello World") it displays the output within VS instead of launching terminal on the Mac like yours is doing here. How can I make mine display the outputs in terminal???

    • @subliminalcastillo2126
      @subliminalcastillo2126 3 года назад

      That looks as if it would be a Build/Compile issue, as in you are currently building/compiling the output to the VS client. Try messing around with the build button (the drop down arrow on the right side of it) and see if you can select Mac OSx terminal from there. I don't know anything about Mac, and I can hardly say I know anything about Visual Studio, but I figure it's worth a try. More often than not, though, terminal cannot support builds from VS, hence why it defaults to VS anyway.

  • @paulvarshan5419
    @paulvarshan5419 15 дней назад

    6:08 6:08
    10:57

  • @mahmoudelbrolosy5536
    @mahmoudelbrolosy5536 3 года назад

    i did not understand it from alot of Arabic language but i understand it from you very well
    my first language is not English :D thank you

  • @orioncallaghan2659
    @orioncallaghan2659 Год назад

    Thanks for showing what the shorthand is actually doing here.