Delegates can refer to several concepts.
I have a scenario where I want to use method group syntax rather than anonymous methods (or lambda syntax) for …
c# delegatesI just posted a question about how to get a delegate to update a textbox on another form. Just when …
c# delegates invoke handle runtime-errorSo I have a delegate which points to some function which I don't actually know about when I first create …
c# .net lambda delegates expression-treesI want to exceute some piece of code in separate AppDomain with delegate. How can I do this? UPD1: some …
c# delegates appdomainThere are some Delegates predefined in C# I know these: EventHandler // Default event callbacks EventHandler<T> // Default event …
c# list delegatesWhats the difference between this: @property (nonatomic, weak) id <SubClassDelegate> delegate; and this: @property (nonatomic, assign) id <…
objective-c ios ios5 delegates propertiesWhat are the pros and cons of each of them? Where should I use them specifically?
iphone objective-c delegates protocols nsnotificationsCan someone explain when and when not to use a 'weak' assignment to a delegate pointer in Swift, and why? …
swift memory-management memory-leaks delegates strong-reference-cycleHow do I pass a function pointer from managed C++ (C++/CLI) to an unmanaged method? I read a few …
delegates c++-cli interop function-pointers