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

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

КОМЕНТАРІ • 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 2 роки тому +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 2 роки тому

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

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

    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.

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

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

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

    Amazing tutorial, really easy to understand

  • @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!

  • @amamsharma372
    @amamsharma372 11 місяців тому

    Keep uploading

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

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

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

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

  • @vivek.tiwary
    @vivek.tiwary 2 роки тому

    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 ?