Tagged Questions

48
votes
9answers
5k views

Wrapping StopWatch timing with a delegate or lambda?

I'm writing code like this, doing a little quick and dirty timing: var sw = new Stopwatch(); sw.Start(); for (int i = 0; i < 1000; i++) { b = DoStuff(s); } sw.Stop(); …
15
votes
9answers
1k views

Is there a downside to adding an anonymous empty delegate on event declaration?

I have seen a few mentions of this idiom (including on SO): public event EventHandler AskQuestion = delegate {}; // deliberately empty subscriber The upside is clear - it avoids the need to check …
14
votes
5answers
2k views

What’s the best way to communicate between view controllers?

Hi Stack Overflow Gang, Being new to objective-c, cocoa, and iPhone dev in general, I have a strong desire to get the most out of the language and the frameworks. One of the resources I'm using is …
13
votes
6answers
1k views

Unsubscribe anonymous method in C#

Is it possible to unsubscribe an anonymous method from an event? If I subscribe to an event like this: void MyMethod() { Console.WriteLine("I did it!"); } MyEvent += MyMethod; I can …
12
votes
5answers
586 views

The proper way of raising events in the .NET framework

Currently "Avoid checking for null event handlers" is at the top of the answers to the post titled Hidden Features of C# and it contains severely misleading information. While I understand that Stack …
10
votes
3answers
1k views

Why are Objective-C delegates usually given the property assign instead of retain?

Hi all, I'm surfing through the wonderful blog maintained by Scott Stevenson, and I'm trying to understand a fundamental Objective-C concept of assigning delegates the 'assign' property vs 'retain'. …
10
votes
5answers
2k views

C#: delegate keyword vs. lambda notation

Once it is compiled, is there a difference between: delegate { x = 0; } and () => { x = 0 } ?
10
votes
2answers
1k views

How to correctly unregister an event handler

In a code review, I stumbled over this (simplified) code fragment to unregister an event handler: Fire -= new MyDelegate(OnFire); I thought that this does not unregister the event handler because …
10
votes
20answers
2k views

When would you use delegates in C#?

What are your usage of delegates in C#?
9
votes
1answer
225 views

Fast C++ Delegates

I'm aware of the following approaches to C++ delegates: . Interfaces with pure virtual functions . Boost.Function . The Fastest Possible C++ Delegates . The Impossibly Fast C++ Delegates . Fast C++ …
8
votes
6answers
208 views

a constructor as a delegate - is it possible in C#?

I have a class like below: class Foo { public Foo(int x) { ... } } and I need to pass to a certain method a delegate like this: delegate Foo FooGenerator(int x); Is it possible to pass the …
8
votes
2answers
344 views

Event and delegate contravariance in .NET 4.0 and C# 4.0

While investigating this question I got curious about how the new covariance/contravariance features in C# 4.0 will affect it. In Beta 1, C# seems to disagree with the CLR. Back in C# 3.0, if you …
8
votes
1answer
190 views

What would I lose by abandoning the standard EventHandler pattern in .NET?

There's a standard pattern for events in .NET - they use a delegate type that takes a plain object called sender and then the actual "payload" in a second parameter, which should be derived from …
8
votes
3answers
830 views

C#: Difference between ‘ += anEvent’ and ‘ += new EventHandler(anEvent)’

Take the below code: private void anEvent(object sender, EventArgs e) { //some code } What is the difference between the following ? [object].[event] += anEvent; //and [object].[event] += …
8
votes
6answers
2k views

Create empty C# event handlers automatically

It is not possible to fire an event in C# that has no handlers attached to it. So before each call it is necessary to check if the event is null. if ( MyEvent != null ) { MyEvent( param1, param2 ); …

1 2 3 4 5 29 next
15 30 50 per page