C# Tutorial For Beginners 2024 - 5. Arrays

Поделиться
HTML-код
  • Опубликовано: 29 сен 2024
  • C# Tutorial For Beginners 2024 - 5. Arrays
    Github repo for project: github.com/ted...
    Twitter: / teddysmithdev
    Github: github.com/ted...
    Linkedin: / teddy-smith-015ba61a3

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

  • @steph291
    @steph291 Месяц назад

    Teddy greetings, At 10:14 you explained the usage of Linq and notation in the where statement :) manipulating arrays of string in C is more demanding. (old C programmer from 1998). I said the "wow!!!" really loud and GF tough I was having a stroke 😯😯

  • @TheMp3Guy-pn4cb
    @TheMp3Guy-pn4cb 2 месяца назад

    I'm confused on why you used Squared Brackets instead of Curly Brackets for when creating the array as some code editors don't let you do that and I'm surprised Visual Studio Code let you.

  • @iFiSiKz
    @iFiSiKz 6 месяцев назад

    Arrays aren't common in work? I think it may depend on your work. When I was doing javascript frontend, I worked with arrays a lot.

    • @TeddySmithDev
      @TeddySmithDev  6 месяцев назад +5

      yes, just C# arrays. JS arrays are everywhere.

  • @sarccacious
    @sarccacious 3 месяца назад

    How would I simulate a deck of cards if I didn't use an array of objects?

    • @TeddySmithDev
      @TeddySmithDev  3 месяца назад

      Dictionary would be perfect for representing cards. There’s actually leetcode style questions that simulate cards all the time.