Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
134 views

Why is casting to a generic type slower than an explicit cast in C#?

I'm building a message dispatch map in C# and mostly just playing around with some different approaches. I am curious about a performance difference I am measuring, but it's not obvious why from ...
4
votes
4answers
1k views

Is there an equivilent of C# Anonymous Delegates in Java?

In C#, you can define small pieces of code called delegates anonymously (even though they are nothing more than syntactic sugar). So, or example, I can do this: public string ...
3
votes
3answers
660 views

Passing in an anonymous delegate to a thread…why does this work?

In my program, we split up a large amount of data that needs to be looked over across four threads. Thread one = new Thread(delegate() { NewMethod(recordsSplitIntoQuarters[0], param2, param3, ...
3
votes
5answers
3k views

Anonymous Delegates and generic Lists in C#

Can you explain me code below : private static List<Post> _Posts; public static Post GetPost(Guid id) { return _Posts.Find(delegate(Post p) { return p.Id == id; }); } What ...
2
votes
2answers
138 views

Is it possible to get the method body (text) of an Action?

I have a circumstance where I have enqueued a number of Action objects and I have a threadpool working through each Action. However, if the application shuts down before the queue is empty, I would ...
2
votes
2answers
162 views

C# anonymus delegates efficiency/safety

I have progress form which delegate: // in ProgressForm thread public delegate void executeMethod(object parameters); private executeMethod method; public object parameters; ...
2
votes
2answers
104 views

Please help me understand anonymous delegates?

I've downloaded the VCSharpSample pack from Microsoft and started reading on Anonymous Delegates. I can more or less understand what the code is doing, but I don't understand the reason behind it. ...
2
votes
2answers
433 views

how to use anonymous generic delegate in C# 2.0

I have a class called NTree: class NTree<T> { delegate bool TreeVisitor<T>(T nodeData); public NTree(T data) { this.data = data; children = new ...
2
votes
7answers
301 views

lambda expressions in C#?

I'm rather new to these could someone explain the significance (of the following code) or perhaps give a link to some useful information on lambda expressions? I encounter the following code in a test ...
1
vote
2answers
93 views

Remove (-=) Form#FormClosed event added (+=) in derived class from class instance?

I have a "MyForm" that derives from System.Windows.Form.Form. MyForm handles the FormClosed event whose handler I set up in the constructor. Is it possible for an instantiated MyForm object to ...
1
vote
2answers
94 views

When are anonymous delegates removed from events?

If I write something like myDataModel.ContentLoaded += (o,e) => { DoSomething(); } When (if ever) is that anonymous delegate removed from the event? As a quick example, I could write this ...
1
vote
2answers
6k views

Dispatcher.Invoke with anonymous delegate works in Silverlight but not WPF

In Silverlight 4 I have a custom service class which has an asynchronous Completed event. Inside the Completed event I take the returned data and invoke a populate method via something like this: ...
1
vote
2answers
609 views

Func<sometype,bool> to Func<T,bool>

If i have: public static Func<SomeType, bool> GetQuery() { return a => a.Foo=="Bar"; } and a generic version public static Func<T, bool> GetQuery<T>() { return ...
0
votes
1answer
121 views

Getting the target of an anonymous method

The following methods are part of a base class which enables derived classes to specify who should be notified by an event. protected void ...
0
votes
2answers
148 views

How does a method wait until an anonymous delegate completes?

I have the following snippet of code (as an example) that looks up a contact: public string Search() { string address = ""; ContactManager manager = new ContactManager(); // ...
0
votes
3answers
418 views

Mapping factory methods with anonymous functions/delegates using Dictionary for faster lookup?

Currently, I have a static factory method like this: public static Book Create(BookCode code) { if (code == BookCode.Harry) return new Book(BookResource.Harry); if (code == BookCode.Julian) ...
0
votes
1answer
385 views

Event handling with an anonymous delegate

For the record: I found a similar question here but I have to elaborate a bit more on on the subject. My concrete scenario is this: In Silverlight 4, The ...