C# Delegates explained

  Рет қаралды 516,991

.NET Interview Preparation videos

.NET Interview Preparation videos

Күн бұрын

Пікірлер: 349
@dnfvideo
@dnfvideo 3 жыл бұрын
Do not miss our Interview Question video series 30 Important C# Interview Questions : kzbin.info/www/bejne/eHzcn3h4hdacf68 25 Important ASP.NET Interview Questions : kzbin.info/www/bejne/ponQfpejf7p2Zsk 25 Angular Interview Questions : kzbin.info/www/bejne/Y5vIoKx6f6mmia8 5 MSBI Interview Questions : kzbin.info/www/bejne/a3abYmiXjaaqj7M
@mrbananaman8032
@mrbananaman8032 4 жыл бұрын
Thank you for clarifying the "WHY" right away and calling out how stupid delegates seem at first glance. In other tutorials that just start teaching you how to use them I can't concentrate and learn because I'm waiting for the actual reason you'd want to use them in a real situation the entire time.
@kebabfoto
@kebabfoto 3 жыл бұрын
Yeah that's really missing sometimes
@rishikeshnerkar1367
@rishikeshnerkar1367 Ай бұрын
How can you soooo ME! this is exactly what I was thinking!
@DGangstaVEVO
@DGangstaVEVO 9 жыл бұрын
Every tutorial i've watched made me think delegates are very complicated until i've watched this and it became so simple! You are awesome, i love the way you teach!
@BeLogicalAlways
@BeLogicalAlways 6 жыл бұрын
Not that great
@lica281
@lica281 4 жыл бұрын
Came here just to say this. Bravo. Fantastic explanation.
@MrGramatix
@MrGramatix 4 жыл бұрын
Yes very true, I read many tutorials and watched few videos too but he explained very well in a simple manner
@maxron6514
@maxron6514 4 жыл бұрын
Yes very well explained
@alagarswamyingersoll
@alagarswamyingersoll 4 жыл бұрын
True.I feel the same.
@MeleeChannel
@MeleeChannel 2 жыл бұрын
The biggest question for me when hearing about Delegates in the first day was "Okay, but why? This seems awfully complicated to do something massively roundabout", and thankfully you solved that in the first minute! Many thanks for the wonderful explanation :)
@scottcase6195
@scottcase6195 7 жыл бұрын
I appreciate that you talked about the reasons why to use delegates. Most videos I have found on this topic just go directly to code and show how to use the delegate with no attempt to explain why, or what it's doing or how it fits in. It's a difficult concept to get clarity on, and a lot of KZbinrs don't seem to really know how it works or why; they just know how to make it work without really understanding.
@titanicpat1275
@titanicpat1275 2 жыл бұрын
I watched an 90 minute tutorial on Delegates yesterday, but couldn't really understand why they looked strange and what I might use them for. Less than 9 minutes here and its clear. Thank you!
@permindersingh1216
@permindersingh1216 5 жыл бұрын
Just adding to what you said, delegates can also be used to invoke function asynchronously on a separate thread using BeginInvoke
@dlmaher1959
@dlmaher1959 3 жыл бұрын
Excellent !!! Very concise, clear explanation. This the second of your tutorials I have followed, first was threading. Just some general feedback; maybe in your examples you should use real world "objects" when discussing classes and functions. So instead of just "obj", use something like "ACUnit". This has real world context that makes it easier for people to follow your examples. Each AC has properties and methods that u can call I think it makes teaching easier
@nerdcartoon2544
@nerdcartoon2544 3 жыл бұрын
Indian accent? Yes Less than ten minutes? Yes 6 years old? Yes Great explanation? Yes Dunno where this comment going anymore? Yes *This video is a legend.*
@ThePGloor
@ThePGloor 8 жыл бұрын
I'm not new to delegates, but found this presentation very useful when I've been looking for a way to explain delegates to others. After watching your video explaining delegates has become easy and meaningful. Thank you!
@anshubudhiraja
@anshubudhiraja 7 жыл бұрын
I don't think that it is only about callbacks. In C# 7, you can pass a method as a parameter, without using delegate, so according to you these delegates should have been removed from C# 7, but delegates have one more, more important role to play and that is to use it for events.
@rongreen3648
@rongreen3648 6 жыл бұрын
Nice explanation showing that a delegate is more than just a simple function pointer. It is a communication device, a callback. Good "delegates from India" illustration!
@peculiarbabalola4430
@peculiarbabalola4430 2 жыл бұрын
You just got an extra subscribers. Succinctly explained. Not assuming and talking about the why. It is missing in most videos. Most people assume that the point will be gotten from just the simple but "stupid" definition. Thank you for going the extra mile to explain the why...very important and much appreciated.
@pramodkumarw
@pramodkumarw 5 жыл бұрын
hey shiv ji,you told that i is used for callback ,callback and callback.but can you my below example public List FindAll(Predicate match); FindAll method is present in List that takes predicate delegate.but i think that is not used for callback.it is used to provides decouple our logic to filter item.please correct me if am wrong and also tell me what is used of predicate delegate .it is used for callback or something else
@macsoccer2012
@macsoccer2012 2 жыл бұрын
Thank you!! I’ve been searching for forever for a decent explanation of delegates. You made it clear and simple to understand in this video. 🙏
@oorja1983
@oorja1983 9 жыл бұрын
good basic kick start but it would be great if you make more videos on this to explain the real power power of delegates when we talk about loosely coupled systems or Event Broker or Observer kind of pattern and that will help the community. Thank you making this video and wish to see your more.
@RedBirdOBX
@RedBirdOBX 7 жыл бұрын
Thank you. This is the first video to explain not HOW to use one....but WHY you could use one. Thanks again.
@colinrickels201
@colinrickels201 5 жыл бұрын
Your accent is more crisp then any teacher i know. Very easy to listen to and comprehend. Keep up the good tutorials !
@prashantb9771
@prashantb9771 8 жыл бұрын
screen should have less zoomed so everything could have been displayed in one page
@drianlarde
@drianlarde 4 жыл бұрын
this is so true..
@Someone-jf3mb
@Someone-jf3mb 7 жыл бұрын
So basically, what he is trying to say for this 8 mins long video is you can call functions from a different class (Scopes), which can be use to call back. Let's say there are two classes A and B. A calls a method in B class. if the method in B wants to tell A some data, it can't unless with delegate. With delegate: A calls a method in B class which has a delegate. A needs to specific what functions in A that B wants to call. B passes in data or just call the delegate (function in A) Please correct me if I am wrong. Hope this helps anyone.
@rupeshkamble9105
@rupeshkamble9105 7 жыл бұрын
Steve Lo thanks.. you explained it very well..
@rabinzx
@rabinzx 6 жыл бұрын
thank you. I was still lost after watching the video, but you sorted things out for me. So delegate has no use under the same class, right?
@unskeptable
@unskeptable 5 жыл бұрын
Some one broken english sorry
@orionmec
@orionmec 2 жыл бұрын
Because the definitions that I was given, "a ptr to a function" I have had a really hard time getting it. Thank you brother, you hit the nail on the head. Or maybe into 'my head'... I get it now!!! Thanks.
@andyhong4164
@andyhong4164 2 жыл бұрын
Another Indian bro pulling us all up here. Thanks so much!
@alagarswamyingersoll
@alagarswamyingersoll 4 жыл бұрын
Excellent explanation sir.I appreciate it.I have been searching to know why we use delegates in C#,now,I have the answer for it.Thank you sir.
@bruinflight
@bruinflight 4 жыл бұрын
This is a great tutorial thank you! And now I will look for the purpose of delegates in He-Sharp :-)
@sasiskitchen9566
@sasiskitchen9566 6 жыл бұрын
In simple words, if you have a thread running and you want to access the other thread method you can use delegate. Cross threading can be performed using delegate. Communicate between two foreign threads. That’s it. Have two threads running and try to access the other thread method, which will end up in cross threading error in runtime. Now use delegate and invoke that method. Wow it’s running.
@robertmasterofpain6863
@robertmasterofpain6863 8 жыл бұрын
Very clear explanation. I've finally got it!
@adrianozuna2149
@adrianozuna2149 10 ай бұрын
Finally!!! I always thought delegates were a very stupid concept because i never understood the point of using this, but this is the first video that i find correctly explains them and gives a practical example of them.
@akshaytalekar2880
@akshaytalekar2880 6 жыл бұрын
You Made Delegates Simplest. This is the Great Understandable Explanation Ever I Have Seen.
@DineshKumar-lq2ck
@DineshKumar-lq2ck 2 жыл бұрын
Nothing is difficult you have the right Teacher. You are the one.
@BahawalTV
@BahawalTV 5 жыл бұрын
Most of videos does not explain the real NEED of delegates. Delegates provide ability to pass METHODS as PARAMETERS to other METHODS. So that other methods can execute them. In Javascript functions are objects. So passing a function as parameter to other methods is not a problem. But in C#, you must add the function reference to a delegate object, and then it can be passed to another method, which can execute it as and when needed. Most popular use of delegates is in implementing callback methods or event handlers. C# EVENTS use delegate internally to implement events and event handlers. The PUBLISHER class declares a delegate, and then an event which uses the delegate internally. Then raises the event as and when needed. The SUBSCRIBER class subscribes to the event of publisher. Internally, it just adds the EventHandler method reference to the delegate of SUBSCRIBER. That is the whole story.
@oskarkarlsson4707
@oskarkarlsson4707 3 жыл бұрын
Best delegate video for understanding the REAL purpose of delegates. Thank you!
@shaziahussain3029
@shaziahussain3029 7 жыл бұрын
Thanks now i learned that a delegate can communicate between two classes or functions and update the data into the functions of classes or between functions as a pointer to the function.
@yasinmagan2244
@yasinmagan2244 2 жыл бұрын
Very clear and concise way of explaining it. Thank you very much
@sashikumar313
@sashikumar313 6 жыл бұрын
iam little confused pls correct me we can directly call a method right like-- public void Longrunningmethod() { for(int i=0;i
@lessknownindeed
@lessknownindeed 2 жыл бұрын
What a great explanation! The easiest teaching means the huge number of study in the background!
@Cromfeld
@Cromfeld 2 жыл бұрын
Absolute plain and simple! The first video, when I got ann explaination why should I use a delegate.
@angel_machariel
@angel_machariel 9 жыл бұрын
This was a crisp and clear presentation of the essence of the delegate keyword.
@nepalxplorer
@nepalxplorer 2 жыл бұрын
Thank you! This is the first video or any material I'm looking about delegates and I can't believe I'm 100% clear, Keep up the great work! :)
@rmarikar1
@rmarikar1 4 жыл бұрын
The BEST explanation of delegates. Thank you.
@sureshmuttagi4380
@sureshmuttagi4380 8 жыл бұрын
Nice explanation but in this example we can directly call the method "CallBack(int i)" like "Program.CallBack(i)" within for loop. Why we need to use Delegate stuff..... Please correct if I am wrong. Thanks in advance.
@sharadpatil6916
@sharadpatil6916 6 жыл бұрын
If we call CallBack function directly then it will wait for end of LongRunning loop. Delegate display information to UI what exactly going on to back end.
@dnfvideo
@dnfvideo 6 жыл бұрын
What if MyClass is consumed in ASP.NET MVC UI. It will display in console and data will never be passed back to the caller. The goal is not to display in console , its communication between two entities.
@etbilu6265
@etbilu6265 5 жыл бұрын
why wait loop end ??????please answer me "!!!@@sharadpatil6916
@x12624
@x12624 4 жыл бұрын
I liked the way he explained it, literal explanation of the delegate and finally the callback function example. It made a little more sense now.
@sandokanfirst2
@sandokanfirst2 3 жыл бұрын
It's a feature of comparisons that they fall short _somewhere_ but if I'm right the comparison of delegates as a language construct to real-world delegates lacks an essential property of the idea behind them. Don't get me wrong - I think this explanation is worthwile, but it is important to know its limitations too. As I see it, the _function_ of C# delegates is indeed similar to that of (country) delegates (i.e. to communicate between two parties). However, an important property of C# delegates is that they are generic, whereas delegates in the real world are _specific_ entities (persons).
@selvakumarmech7959
@selvakumarmech7959 2 жыл бұрын
Good explanation, but I have a question. In the below class, I have tried the same call back function using the normal function call, so I thought the delegate might have some other need to be in c#, Apologies, I am new to C#, can you correct me if I wrong, Note: I can't do the below function call method with static class, is that reason, the Delegates come into place? using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Delegates { class Program { static void Main(string[] args) { BaseClass obj = new BaseClass(); string Temp = Console.ReadLine(); } } public class BaseClass { public BaseClass() { MyClass myClass = new MyClass(this); myClass.LongRunning(); } public void CallBack(int i) { Console.WriteLine(i); } } public class MyClass { private BaseClass _myclass; public MyClass(BaseClass program) { _myclass = program; } public void LongRunning() { for(int i = 0;i
@menspa2471
@menspa2471 6 жыл бұрын
The best explanation ever. Simple and clear
@jerryborzobohaty2212
@jerryborzobohaty2212 2 жыл бұрын
This was the first explanation I had heard that made sense to me. Thank you!
@XEQUTE
@XEQUTE 2 жыл бұрын
I didn't like the fact that this video had images placed in a very weird way, In some parts, it was not possible to see the content because it was blocked by the images. Also, It didn't show the whole code at once just because he had it zoomed in. BUT, this is the only video that got to the point firsthand. So 7/10. good job!
@607
@607 3 жыл бұрын
It would be nice if you showed your full code at the end! Edit: Although I don't think this is sufficient for my use case anyway. You're talking about callbacks, callbacks and callbacks, but I need to use a delegate because I'm working on different threads.
@programuoki-lt1465
@programuoki-lt1465 2 жыл бұрын
Feel the same style as Java JDK 1.8 Functional lib with Interfaces, Combining with Lamdas you able to have more generic methods and pass any function like 2+2, 2*2, 2/2 and so on. BTW Delegate word translation is to delegate Job to other or Out sourcing Job :)
@ziia0528
@ziia0528 2 жыл бұрын
Nice. You also can call delegate via event so that event can be subscribed and its output can be utilized on client side.
@rajeevjha3714
@rajeevjha3714 6 жыл бұрын
clearly explained basically using delegate we can also pass method as a parameter. thanks a lot.
@gasstove9437
@gasstove9437 5 жыл бұрын
need some real time examples to understand this in more proper way.
@asagiai4965
@asagiai4965 4 жыл бұрын
Callbacks * 3 Though if you don't know callbacks you can look at Javascript it have simple definition that can work in many lang. Basically think of delegates as variables that can represents functions. ( As long as it *match the function) Example Delegate void sample_delegate(); // this delegate matches all functions that are void and have no arguments. void say(sample_delegate callme) { //INVOKE callme } void hello() { Console. Writeline("Hello"); } //Now you can make say say hello say(new sample_delegate(hello)); **the very important thing about delegate or callbacks is they are not the functions they are representative of functions*
@sypo_x1891
@sypo_x1891 3 жыл бұрын
@@asagiai4965 thanks man this shit was so damn helpful i appreciate it dude
@asagiai4965
@asagiai4965 3 жыл бұрын
@@sypo_x1891 you're welcome
@AkshayPatil-lm2ps
@AkshayPatil-lm2ps 8 жыл бұрын
Perfectly explained. it was confusing Thanks.
@fredyuldashev
@fredyuldashev 4 жыл бұрын
I'll be honest? This got my very close to understanding! Good Job!
@kristinadanileviciute4750
@kristinadanileviciute4750 6 жыл бұрын
You create a base class FOO, and another subclass BAR that inherits from base class . Also you have some another class FUU {public int FUUproperty{get;set;}=0;} with some property. BAR cannot inherit from multiple classes so declare protected FUU testFUU=new FUU() in base class. Create methods in base class: GetFUUstuff(){ console.write(testFUU.FUUproperty)} SetFUUstuff(int myval){testFUU.FUUproperty=myval} . Create object for FOO and for BAR in Main(). those objects of type FOO and BAR both can call GetFUUstuff() and will receive whats inside that FUU so GetFUUstuff and SetFUUstuff are the Delegate Methods
@endeshaw1000
@endeshaw1000 2 жыл бұрын
AWESOME video ! Im programming since 15 Years but nobody could tell me the real BENEFIT of using complex delegate-syntax instead of simple method calling but this callback thing makes totally sense :) But if getting updates while a method is processing, why they are using so often delegates in simple getter and setter? Why you should have an real time update inside a getter especially when nothing is "returned" while getting the value, except the final return at the end? Are Delegates slower the more "communication" is happening between caller and method? I mean in relation to a "normal" implemented method that simply outputs the counter inside the loop.
@RealityCheck6T9
@RealityCheck6T9 2 жыл бұрын
Really good video. Just one request, could you please zoom out at the end and show all the code?
@MrGramatix
@MrGramatix 4 жыл бұрын
Thanks very much for your simple explanation about delegates
@_sudipb
@_sudipb Жыл бұрын
This is the best explanation I have seen. Thank you. 👍👍
@nihar4713
@nihar4713 3 жыл бұрын
This is the best explanation of delegates I've seen
@eltondaries1215
@eltondaries1215 4 жыл бұрын
Very simple and effective explanation
@TamilistTheGamer
@TamilistTheGamer 8 жыл бұрын
It took me a while to understand delegates, but now it seems to be clicking. Thanks :D
@minelove789
@minelove789 7 жыл бұрын
I am a Nepali delegate to India :)
@HemanthHemu
@HemanthHemu 8 жыл бұрын
Totally confused 1.U have used the same object name 'obj' for MyClass and CallBack, 2.C# isCaseSENSITIVE so CallBack and Callback are different, 3.Although the signature(return type void and parameter int i) of CallBack(delegate) matches with that of Callback(method), the method was never bound to the delgate directly in the code. So how is the control flow going on ...?? Which method is getting called..?? Clarify Please.. Thanks
@asrowley1
@asrowley1 6 жыл бұрын
I had the same issues... have you figured this out?
@prashanthvunnam6243
@prashanthvunnam6243 6 жыл бұрын
There is no confusion you have to learn what is call back functionality
@prashanthvunnam6243
@prashanthvunnam6243 6 жыл бұрын
Step1 he created delegate Step2 he is used that delegate in other running method .in that method that delegate call back with I Step3 Main he created another method which takes int I similar syntax of delegate and assigned that method to delegate
@Dismanameboi
@Dismanameboi 2 ай бұрын
You are easily the best teacher 😊
@KamilKubiak96
@KamilKubiak96 7 жыл бұрын
This is the best and most human like explanation I could find. I got the concept now, thank you so much!
@govindaraoommi9900
@govindaraoommi9900 3 жыл бұрын
really thanks a lot sir , I thought delegates re really tough to understand but now its easy with this video
@joesmith1922
@joesmith1922 7 жыл бұрын
Brilliant! I finally see what a delegate is used for. Thanks!
@sarmistharay5921
@sarmistharay5921 5 жыл бұрын
Great... Explanation Sir.Thank you so very much.
@jmora7101
@jmora7101 4 жыл бұрын
ok you got the point. but delegate is a class pointer to a function that can you use to implement callback.
@mathboy8188
@mathboy8188 2 жыл бұрын
He's certainly right that delegates are used for callbacks... but that's not their only purpose. They're embedded in events, which are a specific kind of callback setup. They can also be multi-cast, so that multiple functions can be called from one delegate invoke, via the + (and - to remove) operator. But the big usage of delegates that's not a mere variant on the callback notion is that delegates serve to ABSTRACT and DECOUPLE code. When you pass a delegate into a routine, you're telling the routine that the delegate will do something - potentially taking in some parameters, and potentially returning some values - but hide from the invoking routine precisely exactly what the delegate is doing. Consider, for example, a delegate to display the results of whatever computation was performed. If you pass a routine a DisplayResults delegate, the routine will invoke it without needing to know what exactly it's doing - maybe it's displaying to the console, maybe it's updating a webpage, maybe it's sending the results to a printer - the invoking routine doesn't know and doesn't care when it calls *_displayResults.Invoke(valuesToDisplay);_* . This is SOLID programming when the invoking routine shouldn't responsible for knowing about how the results are displayed - only that the results are somehow being displayed (SOLID-S). It's made the invoking routine open for extension, but closed for modification (SOLID-O), i.e., you can change HOW the results are displayed without changing a single line of code WITHIN the invoking routine (so no recompilation & redistribution of the invoking routine is required). Displaying the results is also often a lower level detail than invoking routine should care about, so this is can be a form of dependency inversion (SOLID-D). Although not an interface, delegates can also serve a purpose similar to that of SOLID's Interface Segregation Principle (SOLID-I), in the sense that, when passing a delegate to a routine, you're handing that routine precisely what it needs to do its job - no more and no less. If you passed the routine an entire object, you'd be giving that routine access to all of that object's available properties and methods, most of which the routine probably doesn't need (and as well as, potentially, additional coupling that isn't needed). So either directly or in spirit, delegates can serve to implement 4 of the 5 SOLID principles. There's more to be said, but they're mostly consequences of the above. As a consequence of abstraction and decoupling, delegates are invaluable when unit testing. Because delegates are "handing functionality around", they promote composition in general, and even object immutability by handing their abstracted functionality into an object's constructor. Bottom line, by using delegates, the invoking routine is decoupled from the implementation details of how the invoked delegate actually does its work.
@vicmeister9996
@vicmeister9996 3 жыл бұрын
Very useful, perfect explanation
@logictech6228
@logictech6228 6 жыл бұрын
at last I understood what is delegate ..Thank you.. demonstrations should be like this. I've subscribed your Chanel
@kekistaniattackhelicopter2242
@kekistaniattackhelicopter2242 6 жыл бұрын
Finally a clear explanation.
@sreejithg4830
@sreejithg4830 3 жыл бұрын
Brilliant explanation. Thank you.
@harish0555
@harish0555 8 жыл бұрын
Thanq very much loved the expilination and the way of using the Delegate ... Kudaoos ...
@zebasxx
@zebasxx 6 жыл бұрын
thanks for the video, I really appreciate when some one spend time trying to share knowledge. Despite that, I would advice you to show the full code and smaller text, I got lost in your explanation because for the big text.... got me crazy.
@TheChodex
@TheChodex 5 жыл бұрын
Thanks for very clear explanation of delegate. The way you explained the origins of delegate in English dictionary was very helpful.
@korukondamehervihari7025
@korukondamehervihari7025 4 жыл бұрын
Very good explanation. Thank you so much. Thank you so much. Thank you so much.!
@sushilsuthar356
@sushilsuthar356 5 жыл бұрын
Now i got the actually use of delegate, They are so powerful.
@KingTornado
@KingTornado 6 жыл бұрын
Excellent explanation . Now i understand why we need delegates.
@subhraswarup
@subhraswarup 6 жыл бұрын
The best explanation of delegates ever. Thanks
@stevebuddy6827
@stevebuddy6827 8 жыл бұрын
Teach me more please!!! I love your style of teaching! :)
@timothyn4699
@timothyn4699 7 жыл бұрын
I'd say the naming in this example confuses me, if I understand right, the obj in main is not the same as the obj in MyClass, so they should've been named differently for clarification (in my opinion). Also, is there a Callback type? That's what it seems like from MyClass, but to give a function in Main the name of 'callback' as well is confusing. (While in this example all we did was for loop i and increment it, may be handle to just put comments about what other practical code may be used in such a situation)
@asrowley1
@asrowley1 6 жыл бұрын
Agreed - the naming here is confusing. Also it is not clear to me where the delegate is instantiated...
@zx1701
@zx1701 7 жыл бұрын
Excellent explanation of Delegates. Thanks!
@xtonetware5493
@xtonetware5493 6 жыл бұрын
You nailed it sir... Best concise explanation on delegate i have watched so far.. I wish i could give you a triple like and or subcribe click.. Thanks again.
@finalGuessing
@finalGuessing 7 жыл бұрын
I'm game developer I think delegate are very useful for something like this. void printThisWithFunc(System.Action PrintStuffFunc, int someParameter){ var thingtoprint = ""; /// do something very long with those parameter. /// PrintStuffFunc(thingtoprint); } /Then let assume we in Unity private void Start(){ printThisWithFunc(print, 200); printThisWithFunc(Debug.Log, 200); printThisWithFunc(System.Console.WriteLine, 200); } If you mix and match with some OOP stuff you can done some tricky stuff very productive and readable.
@taskinkhaleque2100
@taskinkhaleque2100 8 жыл бұрын
simple and clear presentation.
@utkarshchopra8153
@utkarshchopra8153 Жыл бұрын
Sir You could have added Console.WriteLine() inside the LongRunning() method, why use a delegate here ?
@electrocatalyst
@electrocatalyst 6 жыл бұрын
It's so funny that you pronounce C-Sharp as shisha :D
@ahmedfayyad9696
@ahmedfayyad9696 4 жыл бұрын
yeah :D i think so
@spwim
@spwim 4 жыл бұрын
Anybody else felt like smoking a bong? 🤣
@raymondfinton3177
@raymondfinton3177 4 жыл бұрын
Nice explanation and very quick. Just what I needed. Thank you.
@codezard1
@codezard1 5 жыл бұрын
This can be done without delegate also. We can directly call "Callback" method in "for loop". It will give the current running number. Still not clear. Please help me on this sir. Thanks!
@SD-gj2by
@SD-gj2by 6 жыл бұрын
Awesome explanation and video. Totally get it! Thankyou
@nadeerakuruppu2201
@nadeerakuruppu2201 2 жыл бұрын
Thank you for the great explanations
@itsmeafridi
@itsmeafridi 8 жыл бұрын
Read a few of the books but i found this one very well explained.
@swinalchafle
@swinalchafle 3 жыл бұрын
Nicely explained... Great job
@BritshBeef1
@BritshBeef1 6 жыл бұрын
Really good Tutorial, thank you from the UK!
@kokoronai594
@kokoronai594 6 жыл бұрын
Maybe use a scenario that would actually mandate the use of callbacks. What you showed here, even in the latter example, would be far easier to achieve without delegates.
@ronen116
@ronen116 5 жыл бұрын
you are a Great Teacher !!!!
@imadabab
@imadabab 3 жыл бұрын
Excellent explanation. Thanks a lot. I have subscribed.
@Atezian
@Atezian 2 жыл бұрын
I still don't see why you had to use a delegate. Couldn't you just reference the other classes method directly?
@tvtubeverywell3606
@tvtubeverywell3606 Жыл бұрын
Now you can Separate Code - MyClass from the main Code - Program and Give MyClass to other Developers and they can modify it without making changes to the Main Code. It makes code loosely coupled.
@Anutosh13
@Anutosh13 Жыл бұрын
Now you can Separate Code - MyClass from the main Code - Program and Give MyClass to other Developers and they can modify it without making changes to the Main Code. It makes code loosely coupled.
c# (Csharp) and .NET :- Difference between IEnumerable and IEnumerator.
13:39
.NET Interview Preparation videos
Рет қаралды 495 М.
Cool Parenting Gadget Against Mosquitos! 🦟👶 #gen
00:21
TheSoul Music Family
Рет қаралды 32 МЛН
Kluster Duo #настольныеигры #boardgames #игры #games #настолки #настольные_игры
00:47
How to whistle ?? 😱😱
00:31
Tibo InShape
Рет қаралды 17 МЛН
C# Events and Delegates Made Simple | Mosh
32:04
Programming with Mosh
Рет қаралды 948 М.
Delegates in C# | Delegates Part 1 | C#.NET Tutorial | Mr. Bangar Raju
17:57
Naresh i Technologies
Рет қаралды 228 М.
C# DELEGATES in 8 minutes! Learn .NET FAST!
8:01
tutorialsEU - C#
Рет қаралды 53 М.
OOP interview questions :- What is the difference between Abstraction and Encapsulation ?
12:34
.NET Interview Preparation videos
Рет қаралды 785 М.
c# (Csharp) threading interview question:- What is thread,background thread and foreground thread ?
12:16
Explain Generics in C#? When and why to use them in real applications?
5:57
C# Out parameters Vs REF parameters
6:43
.NET Interview Preparation videos
Рет қаралды 285 М.
Interface in C#
38:55
.NET Interview Preparation videos
Рет қаралды 163 М.
Cool Parenting Gadget Against Mosquitos! 🦟👶 #gen
00:21
TheSoul Music Family
Рет қаралды 32 МЛН