C# Tutorial For Beginners 2024 - 9. Switch Statement & Expression

Поделиться
HTML-код
  • Опубликовано: 30 июн 2024
  • C# Tutorial For Beginners 2024 - 9. Switch Statement & Expression
    Github repo: github.com/teddysmithdev/CSha...
    Twitter: / teddysmithdev
    Github: github.com/teddysmithdev
    Linkedin: / teddy-smith-015ba61a3
  • ХоббиХобби

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

  • @AmIKamil
    @AmIKamil 2 месяца назад +1

    Awesome that you're showing new, neat examples how to code legibly

  • @joaogabrielv.m328
    @joaogabrielv.m328 3 месяца назад +2

    Dang! At the first video I've commented "3 videos at the same day", but you post a whole playlist. You're the best, Teddy

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

    Great tutorials, deserve more love

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

    You’re awesome bro the only c# dev that posts good content, will c# always be king in NC? I’m in Raleigh and I’m currently working on a software degree that this warehouse is paying for

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

      Yeah, I’d say C#/Java will be the GOAT for the foreseeable future in eastern seaboard of US.

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

    Hi teddy, will you be covering multithreading and asynchronous programming ( and the difference bw them) in this course?

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

      no but i do in my ef core course ruclips.net/video/Ao2-wILGkPU/видео.html

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

      alright thanks bro @@TeddySmithDev

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

    Hey Teddy, I'm implementing an email confirmation and password change for your previous tutorial series, my question is, should they be done through jwt? Or I should stick with identity?

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

      You prob going to have to use combination of JWT and Identity. I’ve never done before tho but probably will be in upcoming course.

  • @kvelez
    @kvelez 2 месяца назад

    var fish = "beta";
    var result = fish switch
    {
    "whale" => "mammal",
    "shark" => "reptile",
    _ => "unknown",
    };
    Console.WriteLine(result);