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

Sdílet
Vložit
  • čas přidán 19. 06. 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

Komentáře • 22

  • @jcwing4387
    @jcwing4387 Před 4 lety +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  Před 4 lety +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 Před 2 lety

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

  • @gowrit957
    @gowrit957 Před rokem +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 Před rokem

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

  • @amamsharma372
    @amamsharma372 Před 4 měsíci

    Keep uploading

  • @SamSung-bi6tf
    @SamSung-bi6tf Před 4 lety +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  Před 4 lety +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!

  • @uttamkorat2947
    @uttamkorat2947 Před rokem

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

  • @aparna92
    @aparna92 Před 4 lety +2

    Nice content!!! You are truly amazing.

  • @shvideo1
    @shvideo1 Před rokem

    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.

  • @rorychockman7670
    @rorychockman7670 Před 2 lety

    Amazing tutorial, really easy to understand

  • @akfsf00543
    @akfsf00543 Před 2 lety

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

  • @ClintonVincen
    @ClintonVincen Před 3 lety

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

  • @vivek.tiwary
    @vivek.tiwary Před rokem

    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 ?