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

Поділитися
Вставка
  • Опубліковано 14 жов 2024

КОМЕНТАРІ • 15

  • @joaogabrielv.m328
    @joaogabrielv.m328 7 місяців тому +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

  • @AmIKamil
    @AmIKamil 5 місяців тому +2

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

  • @gellertsamel9105
    @gellertsamel9105 2 місяці тому

    you are awesome dude, thanks for the videos

  • @isaacthor3186
    @isaacthor3186 5 місяців тому

    Great tutorials, deserve more love

  • @Nunya7776
    @Nunya7776 7 місяців тому

    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  7 місяців тому

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

  • @mischief9499
    @mischief9499 7 місяців тому

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

    • @TeddySmithDev
      @TeddySmithDev  7 місяців тому

      no but i do in my ef core course ua-cam.com/video/Ao2-wILGkPU/v-deo.html

    • @mischief9499
      @mischief9499 7 місяців тому

      alright thanks bro @@TeddySmithDev

  • @mishaslizhov1056
    @mishaslizhov1056 7 місяців тому

    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  7 місяців тому

      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.

  • @pjm3005
    @pjm3005 9 днів тому

    i despise arrow/lambda/anonymous functions. I think they destroy code readability.

  • @kvelez
    @kvelez 5 місяців тому

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