Delegates & Multicast Delegates in C#.Net made easy! |Action & Func| Anonymous Methods | Codelligent

Поделиться
HTML-код
  • Опубликовано: 22 май 2024
  • In this video you will learn the Delegates and Multicast Delegates in C#.Net with the help of very simple examples.
    The topics being covered:
    00:00 - Intro
    00:44 - Simple Delegates
    04:48 - Anonymous Methods
    06:53 - Multicast Delegates
    13:02 - Using Delegates for Callbacks
    19:46 - Using Delegates for Making Flexible Applications
    29:01 - Action & Func
    If you found this video helpful don’t forget to hit the Like button!
    If you wish to join us for future learning, do Subscribe this channel and hit the Bell icon to get the future video notifications!
    #Delegate #MulticastDelegate #DotNet
    -----------------------------------------------------------------------------------------
    We believe in - "Knowledge increases by sharing!!"
    Who are we?
    We are a bunch of IT professionals who love to teach apart from our regular coding work! 👬👫
    Why this Channel?
    In our career, we have noticed that many new programmers get confused while coding, even though they are aware of that concept. We help them understand the concept in our office. 🤗
    So, we thought why not share these concepts in the same easy to understand way to the whole world.
    Let every one who is starting their coding journey get to learn and become a better programmer! 😊
    We have taught many people offline, and now trying to make an online presence to help wider audience. 💖
    Let's Code!
    #LoveForCoding #LoveForTeaching #Codelligent #LetsCode #India
    -----------------------------------------------------------------------------------------
    Intro music credit: www.zapsplat.com
    Intro background image credit: www.freepik.com

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

  • @jcwing4387
    @jcwing4387 4 года назад +6

    Excellent! I would like to learn C# and ASP.net core and I think I found the right teacher after searching for so long! Do you have any online tutorial? Keep up the good work sir!

    • @CODELLIGENT
      @CODELLIGENT  4 года назад +2

      Thanks a lot. Honored that you liked my way of teaching...
      I have started this channel in recent times. Will be uploading more topics. Started with such C# concepts which people find difficult to understand. After few videos will proceed to ASP.Net Core. :)

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

      @@CODELLIGENT thank you so much excatly I feel the same

  • @gowrit957
    @gowrit957 Год назад +1

    After watching many videos about c# . I found your channel. Ur videos are simple to understand. So, pls provide more videos on .Netcore

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

    sir, please keep teaching this way really liked your way of teaching. understood all things at once

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

    amazing, i watched a lot of videos on delegates but this is where i understood

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

    Great and to the point tutorial. Thank you for starting with clean code when you make each of your points. It's very clear. Thank you for putting this video together.

  • @aparna92
    @aparna92 4 года назад +2

    Nice content!!! You are truly amazing.

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

    Keep uploading

  • @SamSung-bi6tf
    @SamSung-bi6tf 4 года назад +4

    Great Tutorial! I like the way to teach! Do you have any C# or .Net Core tutorial courses in Udemy or any other online tutorial sites? Can you discuss "Switch Statements, Pattern Matching, Tuple"? Once again, i would like to thank you for another excellent tutorial! More power brother!

    • @CODELLIGENT
      @CODELLIGENT  4 года назад +1

      Thanks a lot for your humble words. :)
      I don't have tutorials in Udemy yet. I have started this channel recently. So you can subscribe this channel for many more upcoming videos.
      Will definitely cover the topics you have asked for very soon!

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

    Amazing tutorial, really easy to understand

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

    This is very good video. i like it but, Predicate is missing

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

    Example at 24:20 looks very familiar, hope you have given due credit to its author ;)

  • @vivek.tiwary
    @vivek.tiwary Год назад

    If I replace this line of code, var t = new Thread(() => obj.DoSomeTimeConsumingWork(Print))
    by Task.Factory.StartNew(() => obj.DoSomeTimeConsumingWork(Print));, AnotherLib method does not call the Callback, Why ?