C# ACTION and FUNC for Dummies

Поділитися
Вставка
  • Опубліковано 9 січ 2025

КОМЕНТАРІ • 26

  • @CodeItUpByAMBITIONED
    @CodeItUpByAMBITIONED  3 роки тому +1

    PROTIP: Watch me at 1.5x speed to save time! 😎
    Do you love this video? What is your opinion about it? 🙄 What kind of lessons do you prefer? Shorter or longer? Let me know in the comments! 👇
    You can get my source code from here: bit.ly/my-source-ciu 👈

  • @010101dddm
    @010101dddm 4 роки тому +2

    Perfectly explained. Thank you.

  • @kalin.tsenkov
    @kalin.tsenkov 5 років тому +10

    Awesome video!
    Can you make a video about SOLID Design Principles?

  • @Kriskopower
    @Kriskopower 2 роки тому

    "Goes to hiks + igrek" :D razveseli me tfa dosta , inache mersi za uroka dosta polezno ^^

  • @ivaylo.hristov
    @ivaylo.hristov 5 років тому +2

    I would also love to see your take on SOLID principles.

  • @shaunhunterit342
    @shaunhunterit342 3 роки тому

    Thanks, I like videos like these with lots of examples to play about with

  • @hamzakoala2382
    @hamzakoala2382 4 роки тому +1

    great explanation im really lucky to know this channel keep it up i love ur work

  • @saurabhchauhan232
    @saurabhchauhan232 4 роки тому

    Superb explanation through examples

  • @krisdurzhev5514
    @krisdurzhev5514 4 роки тому +1

    Awesome video! Good Job :)

  • @mybusinessnotyours2051
    @mybusinessnotyours2051 3 роки тому

    Great Tutorial, thank you good sir!

  • @birdup8585
    @birdup8585 3 роки тому

    Great video, thank you very much!

  • @VinuP2023
    @VinuP2023 4 роки тому +1

    Thanks much for the video :)

  • @tisurmaster
    @tisurmaster 4 роки тому

    could we create applications by only using FUNC and ACTION?

  • @ZuraevD
    @ZuraevD Рік тому

    Thanks a lot:)

  • @Summer9604
    @Summer9604 4 роки тому +1

    Hey, man! Thanks for your vídeo! Let me see if I did understand the concepts:
    Delegate is an abstraction of func and action just like a superclass. Am I correct?

    • @CodeItUpByAMBITIONED
      @CodeItUpByAMBITIONED  4 роки тому +1

      Yes, you can consider the Delegate to be an abstraction, and the Action and Func to be concrete implementations of it.

  • @theITvideos
    @theITvideos 3 роки тому

    quite useful video

  • @TheDibs4
    @TheDibs4 3 роки тому

    Very good

  • @fishraider7897
    @fishraider7897 3 роки тому

    Great!

  • @lashuti31
    @lashuti31 2 роки тому

    3
    3

  • @moaad95
    @moaad95 2 роки тому

    In Case you want to print all the results from Func delegate you do this-->
    foreach(Delegate d in func.GetInvocationList())
    Console.WriteLine(d.DynamicInvoke());