The anonymous-delegates tag has no wiki summary.
1
vote
2answers
63 views
Methods that return delegates with .net2
I've been working in .net 4 and really enjoying the ability to return bespoke functions from a single method e.g:
public Func<object, object> FunctionBuilder(object o)
{ /*build functions, ...
2
votes
3answers
130 views
Can I return a reference to new object instance from a C# delegate?
I'm learning/experimenting with some functional patterns within C# and I've hit a bump I can't quite explain. I'm sure it's a simple answer (I hope) but I'm struggling to see it. Likely has to do ...
-2
votes
2answers
96 views
Why do anonymous delegates appear faster than regular delegates?
Can somebody tell me why anonymous delegates runs a lot faster than regular delegates? I saw the result in diagnosing with Stopwatch class in a for loop and the difference was significant. If you run ...
1
vote
1answer
133 views
Will an anonymous-delegate event listener prevent garbage collection?
I'm unsure whether a child window is able to be garbage-collected in the following scenario.
User control contains a "show popup" command
The command creates a child window, and adds an anonymous ...
1
vote
4answers
116 views
What is this type of delegate called(C#)
I have these lines of code.
class Program
{
public delegate void printer();
public static void Method()
{
Console.WriteLine("Hello");
}
static void Main(string[] args)
...
9
votes
2answers
148 views
type arguments can't be inferred from the usage for higher-order function
I have the following higher-order function:
public static Func<T, bool> Not<T>(Func<T, bool> otherFunc)
{
return arg => !otherFunc(arg);
}
And trying to call it like that:
...
3
votes
2answers
185 views
“dynamic” for anonymous delegates?
I wonder if there is a possibility to make the "dynamic" type for variables work for anonymous delegates.
I've tried the following:
dynamic v = delegate() {
};
But then I got the following error ...
6
votes
2answers
184 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 ...
0
votes
1answer
375 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 ...
1
vote
2answers
213 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
267 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 ...
0
votes
2answers
305 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();
// ...
2
votes
2answers
487 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 ...
4
votes
3answers
3k 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, ...
2
votes
2answers
211 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;
...
0
votes
3answers
1k 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) ...
7
votes
2answers
13k 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:
...
2
votes
2answers
134 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
631 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 ...
1
vote
2answers
1k 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 ...
2
votes
7answers
429 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 ...
0
votes
1answer
548 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 ...
7
votes
4answers
3k 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 ...
4
votes
5answers
4k 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 ...
