Multicast Delegates | Delegates Part 2 | C#.NET Tutorial | Mr. Bangar Raju

แชร์
ฝัง
  • เผยแพร่เมื่อ 31 ธ.ค. 2024

ความคิดเห็น • 44

  • @frozenprakash
    @frozenprakash 7 ปีที่แล้ว +21

    First time i understood the use of Delegates and Multicast delegates in real time !!
    Great videos man, keep posting good ones like this !!!
    I would love to see your videos on Threading, TPL, Async/Await etc too !!!

  • @tanvirbhatti3195
    @tanvirbhatti3195 6 ปีที่แล้ว +4

    i have never seen easiest way of teaching like this before...you are the best keep it up

  • @nitintripathi3742
    @nitintripathi3742 ปีที่แล้ว

    I am a very big fan of Bangar Raju Sir I love to watch his C# video's .His OOPS Concept is more than awesome. He is a great Mentor.

  • @karthickreven5330
    @karthickreven5330 7 ปีที่แล้ว +4

    Sir i was searching perfect answer for 1 year .But now i was clearly explained and understood .Thanks

  • @dineshjadhav9484
    @dineshjadhav9484 5 ปีที่แล้ว

    Read delegates many times but didn't understood but understood from you. Such a simple way of teaching. Keep it up Sir

  • @vikaswaghmare9068
    @vikaswaghmare9068 3 ปีที่แล้ว

    Thanks for such a good explanation about delegate.. With the help of your proof of concept... I cracked more interviews... Really hats of you sur for such demonstrate 🙏

  • @swapnalimore7145
    @swapnalimore7145 4 ปีที่แล้ว +1

    The concept is explained very nicely and understandable way

  • @ketankulkarni427
    @ketankulkarni427 7 ปีที่แล้ว +5

    Amazing explanation !!!

  • @mahadifamgate2686
    @mahadifamgate2686 3 ปีที่แล้ว

    this guy made my programming concept so clear !

  • @nickeax
    @nickeax 4 ปีที่แล้ว

    This is really great, thank you! I always have "aha!" moments when watching your lessons.

  • @preetamvarun9219
    @preetamvarun9219 7 หลายเดือนก่อน

    Thank you sir for these wonderful tutorials!

  • @AWanderingTraveler
    @AWanderingTraveler 2 ปีที่แล้ว

    Damn, very straight forward explanation. Finally understood it. Many thanks

  • @divyakrishnabandaru1255
    @divyakrishnabandaru1255 5 ปีที่แล้ว +1

    I understood about deligate clearly sir tq

  • @yeyulchoi6314
    @yeyulchoi6314 ปีที่แล้ว

    thank God for finding your lecture.

  • @gauravdhasmana166
    @gauravdhasmana166 6 ปีที่แล้ว

    Ur videos are the best sir.thnks a lot.

  • @prasunjeetsoni6143
    @prasunjeetsoni6143 3 ปีที่แล้ว

    Superb Explanation

  • @fw3002
    @fw3002 3 ปีที่แล้ว

    Beautiful tutorial, thanks a lot!

  • @aimhigh2338
    @aimhigh2338 5 ปีที่แล้ว

    pehli bar actually samjh aya... isse pehele bs bakar ho rhi thi jb bhi delegates padho

  • @top5things968
    @top5things968 2 ปีที่แล้ว

    THANK YOU SIR.

  • @imadabab
    @imadabab 5 ปีที่แล้ว

    Perfect video. Thanks a lot.

  • @jeevankrishnan6741
    @jeevankrishnan6741 5 ปีที่แล้ว +1

    Results can be added in some List so that it wont overwritten. List.Add(delegate.Invoke())

  • @kiPROBRos
    @kiPROBRos 2 ปีที่แล้ว

    Thanks.

  • @mingosutu
    @mingosutu 4 ปีที่แล้ว

    Very nice. Thanks

  • @vikassahu9237
    @vikassahu9237 7 ปีที่แล้ว

    keep doing sir ! nice lecture..

  • @1prdas1
    @1prdas1 3 ปีที่แล้ว

    Thank you.

  • @n-az563
    @n-az563 2 ปีที่แล้ว

    Tq sir

  • @chaithravasista1622
    @chaithravasista1622 2 ปีที่แล้ว

    At 6:27 I observed that under startup project menu there are 3 cs files. But in mine it's showing only one and also I have one more doubt, can two class files of same project can have main methods in both of them ?

  • @thatsalot3577
    @thatsalot3577 3 ปีที่แล้ว

    is there any way to store the values returned by different functions in an array or any other collections while calling them using one delegate.

  • @ehtishamtahir2187
    @ehtishamtahir2187 6 ปีที่แล้ว +1

    Thank you sir....

  • @neha_tanisa_yadav
    @neha_tanisa_yadav 5 ปีที่แล้ว

    thank so much to share this video . I am very happy but sir i tried with double return type with delegate and method and calling time both method calling same but you said that only last method will be call first method will be override. please give a demo please

    • @pramodwayal4207
      @pramodwayal4207 2 ปีที่แล้ว

      public delegate double deleGatesTest(int x, int y);
      class DelegatesDemo
      {
      public double Add(int a,int b)
      {
      return a + b;
      }
      public double sub(int a,int b)
      {
      return a - b;
      }
      static void Main()
      {
      DelegatesDemo d = new DelegatesDemo();
      deleGatesTest ad = new deleGatesTest(d.Add);
      ad += d.sub;
      double value= ad.Invoke(100, 50);
      Console.WriteLine(value);
      Console.ReadLine();
      }
      }
      You try this

  • @BHARATGARANDE
    @BHARATGARANDE 7 ปีที่แล้ว

    Thanks...

  • @iqramuslim8763
    @iqramuslim8763 5 ปีที่แล้ว

    also make video on Generics

  • @MUKKASAI
    @MUKKASAI 4 ปีที่แล้ว

    How many methods we can invoke using multicast? Is there any limit?

  • @iqbalhasan705
    @iqbalhasan705 6 ปีที่แล้ว +1

    Sir, it would be very much helpful for all of us, if you would supply the source code of practice video,as if we can practice after watching your videos.

  • @bhoi.saranga
    @bhoi.saranga 3 ปีที่แล้ว

    What is the benefit of using a delegate in real time ?

  • @yogendersharma3475
    @yogendersharma3475 2 ปีที่แล้ว

    1M+ Subscriber , 80K + Views But Just 800+ Likes ...I wonder 🤔

  • @kaus05
    @kaus05 3 ปีที่แล้ว

    Why was there a consol.readline at the end of code wouldn't the parameters pass regardless

    • @nardostesfalem9789
      @nardostesfalem9789 2 ปีที่แล้ว

      consol.writeline(" hello world") //inorder the hello world to be printed in the consol we need to write the readline. sometimes it works without it if not u will need to use this readline.....then it will read it and print

  • @ronankisaikiran3331
    @ronankisaikiran3331 3 ปีที่แล้ว

    How to bind more than three methods ? += Not able to use

  • @MinM_24
    @MinM_24 2 ปีที่แล้ว +2

    Sir some people are stealing your content.🥲

  • @naseemabegum109
    @naseemabegum109 6 ปีที่แล้ว

    Thank You Sir....