Delegates can refer to several concepts.
Duplicate of: How to ensure an event is only subscribed to once and Has an event handler already been added? …
c# event-handling delegatesI have simple method in my C# app, it picks file from FTP server and parses it and stores the …
c# asynchronous delegatesThroughout my app, I'm getting semantic issue warnings when I set ViewController.delegate = self. I have searched and found similar …
ios objective-c delegatesWhat is a "delegate" in Objective C's iPhone development?
ios iphone objective-c delegates uiapplicationdelegateI need to have some delegates in my class. I'd like to use the interface to "remind" me to set …
c# interface delegatesI don't see advantages of using events over delegates, other than being syntactical sugar. Perhaps I am misunderstanding, but it …
c# events delegatesIs it possible to unsubscribe an anonymous method from an event? If I subscribe to an event like this: void …
c# delegates anonymous-methodsOnce it is compiled, is there a difference between: delegate { x = 0; } and () => { x = 0 } ?
c# .net delegates lambda anonymous-methodsI have to do some operation whenever UICollectionView has been loaded completely, i.e. at that time all the UICollectionView's …
uicollectionview delegates reload