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

Поделиться
HTML-код
  • Опубликовано: 15 ноя 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 !!!

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

  • @tanvirbhatti3195
    @tanvirbhatti3195 6 лет назад +4

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

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

  • @nickeax
    @nickeax 4 года назад

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

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

    The concept is explained very nicely and understandable way

  • @preetamvarun9219
    @preetamvarun9219 5 месяцев назад

    Thank you sir for these wonderful tutorials!

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

    this guy made my programming concept so clear !

  • @ketankulkarni427
    @ketankulkarni427 6 лет назад +5

    Amazing explanation !!!

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

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

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

    thank God for finding your lecture.

  • @aimhigh2338
    @aimhigh2338 5 лет назад

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

  • @divyakrishnabandaru1255
    @divyakrishnabandaru1255 5 лет назад +1

    I understood about deligate clearly sir tq

  • @jeevankrishnan6741
    @jeevankrishnan6741 5 лет назад +1

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

  • @gauravdhasmana166
    @gauravdhasmana166 6 лет назад

    Ur videos are the best sir.thnks a lot.

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

    THANK YOU SIR.

  • @imadabab
    @imadabab 5 лет назад

    Perfect video. Thanks a lot.

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

    Superb Explanation

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

    Beautiful tutorial, thanks a lot!

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

    Thanks.

  • @vikassahu9237
    @vikassahu9237 7 лет назад

    keep doing sir ! nice lecture..

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

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

  • @n-az563
    @n-az563 2 года назад

    Tq sir

  • @1prdas1
    @1prdas1 3 года назад

    Thank you.

  • @mingosutu
    @mingosutu 4 года назад

    Very nice. Thanks

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

    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.

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

  • @bhoi.saranga
    @bhoi.saranga 3 года назад

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

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

  • @iqramuslim8763
    @iqramuslim8763 5 лет назад

    also make video on Generics

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

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

  • @ehtishamtahir2187
    @ehtishamtahir2187 6 лет назад +1

    Thank you sir....

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

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

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

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

  • @BHARATGARANDE
    @BHARATGARANDE 7 лет назад

    Thanks...

  • @MinM_24
    @MinM_24 2 года назад +2

    Sir some people are stealing your content.🥲

  • @naseemabegum109
    @naseemabegum109 5 лет назад

    Thank You Sir....