Delegates can refer to several concepts.
I'm writing my first iPhone application and I'm having trouble switching views. I have 2 views and a reference to each …
iphone objective-c singleton delegates uiapplicationHi there I am trying to change the text that is showing in the delete button when a user swipes …
iphone ios uitableview delegatesWhy can't you pass an anonymous method as a parameter to the BeginInvoke method? I have the following code: private …
c# delegates anonymous-methods begininvokeSo I have an object which has some fields, doesn't really matter what. I have a generic list of these …
c# delegatesI'm new to the world of threading, but a few aspects of an app I'm working on require me to …
vb.net delegates backgroundworker invokeAll the examples I can find about Func<> and Action<> are simple as in the one …
c# delegates action anonymous-methods funcBy convention classes are often named like nouns, methods like verbs and interfaces like adjectives. What is the common naming …
.net delegates naming-conventionsWhen using myDelegate -= eventHandler ReSharper (version 6) issues: Delegate subtraction has unpredictable result The rational behind this is explained by …
c# events delegates resharper compiler-warningsI never seem to understand why we need delegates? I know they are immutable reference types that hold reference of …
c# delegates