Top "Delegates" questions

Delegates can refer to several concepts.

Getting a reference to the UIApplication delegate

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 uiapplication
How to change uitableview delete button text

Hi there I am trying to change the text that is showing in the delete button when a user swipes …

iphone ios uitableview delegates
Anonymous method as parameter to BeginInvoke?

Why can't you pass an anonymous method as a parameter to the BeginInvoke method? I have the following code: private …

c# delegates anonymous-methods begininvoke
How do you declare a Predicate Delegate inline?

So I have an object which has some fields, doesn't really matter what. I have a generic list of these …

c# delegates
VB.NET Delegates and Invoke - can somebody explain these to me?

I'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 invoke
Delegates: Predicate vs. Action vs. Func

Can someone provide a good explanation (hopefully with examples) of these 3 most important delegates: Predicate Action Func

c# delegates predicate func
How do you use Func<> and Action<> when designing applications?

All the examples I can find about Func<> and Action<> are simple as in the one …

c# delegates action anonymous-methods func
Proper naming convention for a .NET Delegate type?

By convention classes are often named like nouns, methods like verbs and interfaces like adjectives. What is the common naming …

.net delegates naming-conventions
"Delegate subtraction has unpredictable result" in ReSharper/C#?

When using myDelegate -= eventHandler ReSharper (version 6) issues: Delegate subtraction has unpredictable result The rational behind this is explained by …

c# events delegates resharper compiler-warnings
Why do we need C# delegates

I never seem to understand why we need delegates? I know they are immutable reference types that hold reference of …

c# delegates