Tagged Questions
An *anonymous method* is a procedure or function that does not have a name associated with it.
281
votes
3answers
25k views
Is there a reason for C#'s reuse of the variable in a foreach?
When using lambda expressions or anonymous methods in C#, we have to be wary of the access to modified closure pitfall. For example:
foreach (var s in strings)
{
query = query.Where(i ...
48
votes
7answers
8k 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 ...
33
votes
4answers
9k views
delegate keyword vs. lambda notation
Once it is compiled, is there a difference between:
delegate { x = 0; }
and
() => { x = 0 }
?
29
votes
8answers
6k views
when not to use lambda expressions
A lot of questions are being answered on stackoverflow, with members specifying how to solve these real world/time problems using lambda expressions.
Are we overusing it, are we considering the ...
26
votes
4answers
3k views
In C#, why can't an anonymous method contain a yield statement?
I thought it would be nice to do something like this (with the lambda doing a yield return):
public IList<T> Find<T>(Expression<Func<T, bool>> expression) where T : class, ...
22
votes
6answers
9k views
Anonymous method in Invoke call
Having a bit of trouble with the syntax where we want to call a delegate anonymously within a Control.Invoke.
We have tried a number of different approaches, all to no avail.
For example:
...
17
votes
7answers
3k views
How do I Unregister 'anonymous' event handler
Say if I listen for an event:
Subject.NewEvent += delegate(object sender, NewEventArgs e)
{
//some code
});
Now how do I un-register this event? Or just allow the memory to leak?
16
votes
7answers
2k views
Can someone explain Anonymous methods to me?
Delphi 2009, among some cool stuff, has also just got Anonymous methods. I've seen the examples, and the blog posts regarding anonymous methods, but I don't get them yet. Can someone explain why I ...
15
votes
10answers
3k views
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 below where you see how they technically work but I would like to see them used in examples where they solve ...
15
votes
6answers
18k views
anonymous delegates in C#
I can't be the only one getting tired of defining and naming a delegate for just a single call to something that requires a delegate. For example, I wanted to call .Refresh() in a form from possibly ...
15
votes
7answers
24k views
DataTable.Select vs DataTable.rows.Find vs foreach vs Find(Predicate<T>)/Lambda
I have a DataTable/collection that is cached in memory, I want to use this as a source to generate results for an auto complete textbox (using AJAX of course).
I am evaluating various options to fetch ...
14
votes
2answers
604 views
How and when are variables referenced in Delphi's anonymous methods captured?
This was prompted by How to compare TFunc/TProc containing function/procedure of object?, specifically by David's comment to Barry's question. Since I don't have a Blog to post this to I'm going to ...
14
votes
5answers
916 views
Closures in C# event handler delegates?
I am coming from a functional-programming background at the moment, so forgive me if I do not understand closures in C#.
I have the following code to dynamically generate Buttons that get anonymous ...
13
votes
2answers
526 views
Interfaces, Anonymous Methods and Memory Leaks
this is a constructed example. I don't want to post the original code here. I tried to extract the relevant parts though.
I have an interface that manages a list of listeners.
TListenerProc = ...
12
votes
9answers
519 views
Avoid or embrace C# constructs which break edit-and-continue?
I develop and maintain a large (500k+ LOC) WinForms app written in C# 2.0. It's multi-user and is currently deployed on about 15 machines. The development of the system is ongoing (can be thought of ...
11
votes
5answers
4k views
C# Adding and Removing Anonymous Event Handler
I was wondering if this actually worked ?
private void RegisterKeyChanged(T item) {
item.OnKeyChanged += (o, k) => ChangeItemKey((T)o, k);
}
private void UnRegisterKeyChanged(T ...
9
votes
3answers
249 views
Private field captured in anonymous delegate
class A
{
public event EventHandler AEvent;
}
class B
{
private A _foo;
private int _bar;
public void AttachToAEvent()
{
_foo.AEvent += delegate()
{
...
...
9
votes
2answers
665 views
Why don't anonymous delegates/lambdas infer types on out/ref parameters?
Several C# questions on StackOverflow ask how to make anonymous delegates/lambdas with out or ref parameters. See, for example:
Calling a method with ref or out parameters from an anonymous method
...
9
votes
6answers
1k views
Can an anonymous method in C# call itself?
I have the following code:
class myClass
{
private delegate string myDelegate(Object bj);
protected void method()
{
myDelegate build = delegate(Object bj)
{
...
9
votes
3answers
2k views
Delegates and Lambdas and LINQ, Oh My!
As a fairly junior developer, I'm running into a problem that highlights my lack of experience and the holes in my knowledge. Please excuse me if the preamble here is too long.
I find myself on a ...
9
votes
7answers
2k views
C# 2.0 Threading Question (anonymous methods)
I have a simple application with the following code:
FileInfo[] files = (new DirectoryInfo(initialDirectory)).GetFiles();
List<Thread> threads = new List<Thread>(files.Length);
...
8
votes
2answers
177 views
Memory leaks happens in nested anonymous method
In Delphi XE, the following code will cause memory leak:
procedure TForm1.Button1Click(Sender: TObject);
var P, B: TProc;
begin
B := procedure
begin
end;
P := procedure
...
8
votes
3answers
186 views
Problem with different “execution context” of an anonymous method within a loop
I have a problem with an anonymous method within a loop.
The following code is just to illustrate my problem:
private void Form1_Load(object sender, EventArgs e)
{
List<string> bassists = ...
8
votes
3answers
2k views
C# Cannot use ref or out parameter inside an anonymous method body
I'm trying to create a function that can create an Action that increments whatever integer is passed in. However my first attempt is giving me an error "cannot use ref or out parameter inside an ...
8
votes
5answers
610 views
Creating two delegate instances to the same anonymous method are not equal
Consider the following example code:
static void Main(string[] args)
{
bool same = CreateDelegate(1) == CreateDelegate(1);
}
private static Action CreateDelegate(int x)
{
return delegate { int ...
8
votes
5answers
5k views
ThreadPool.QueueUserWorkItem with a lambda expression and anonymous method
Passing two parameters to a new thread on the threadpool can sometimes be complicated, but it appears that with lambda expressions and anonymous methods, I can do this:
public class TestClass
{
...
7
votes
1answer
125 views
Strange bug with anonymous methods in 'initialization' section
This unit fails to compile in XE2 Update 3 with error "Internal Error: SY6315". In XE there is no such problem.
unit Test;
interface
uses
SysUtils;
var
Proc: TProc;
implementation
...
7
votes
1answer
132 views
Using Delphi, unable to use anonymus type as a type of a record?
I don't understand why the following small console application does not compile:
program Project1;
type
TProc = reference to procedure;
TMyRec = record
Proc: TProc;
end;
var
myProc: ...
7
votes
2answers
535 views
Lambda expression vs anonymous methods
I would like to know what is the difference. Currently I am learning this stuff and it seems to me like these are just the same:
delegate void X();
X instanceOfX;
instanceOfX = delegate() { code };
...
7
votes
1answer
1k views
How do delegate/lambda typing and coercion work?
I've noticed some examples of things that work and don't work when dealing with lambda functions and anonymous delegates in C#. What's going on here?
class Test : Control {
void testInvoke() {
...
7
votes
5answers
2k views
LINQ vs Lambda vs Anonymous Methods vs Delegates
Can anyone explain what are the LINQ, Lambda, Anonymous Methods, Delegates meant?
How these 3 are different for each other?
Was one replaceable for another?
I didn't get any concrete answer when ...
7
votes
1answer
216 views
C# -Closure -Clarification
I am learning C#.Can I mean closure as a construct that can adopt the changes in the environment in which it is defined.
Example :
List<Person> gurus =
new List<Person>()
...
7
votes
6answers
288 views
ok, this worked. what is it exactly?
I just lifted this snippet from a website and it proved to be exactly the solution I needed for my particular problem.
I have no idea what it is (particularly the delegate and return parts) and the ...
6
votes
2answers
81 views
Are anonymous listeners incompatible with weak references?
I was reading this question that just got asked: Avoid memory leaks in callbacks?
And I was quite confused, until someone answered the following:
"The problem with this approach is you cannot have a ...
6
votes
1answer
236 views
Delphi anonymus methods - pro and cons. Good practices when using closures(anonymus methods) in Delphi
I have a colleague in my team which is extensively using closures in our projects developed in Delphi. Personal, I don't like this because is making code harder to read and I believe that closures ...
6
votes
3answers
123 views
How to avoid anonymous methods in “dynamic” event subscription?
How could I refactor the method
private void ListenToPropertyChangedEvent(INotifyPropertyChanged source,
string propertyName)
{
source.PropertyChanged += ...
6
votes
1answer
139 views
Optional Anonymous Method
I would like to expose a function that can take an optional anonymous method :
type
TParamsProc = reference to procedure(Params: TSQLParams);
TFieldsProc = reference to ...
6
votes
3answers
466 views
How to break WinDbg in an anonymous method?
Title kinda says it all. The usual SOS command !bpmd doesn't do a lot of good without a name.
Some ideas I had:
dump every method, then use !bpmd -md when you find the corresponding MethodDesc
...
6
votes
4answers
1k views
Assigning property of anonymous type via anonymous method
I am new in the functional side of C#, sorry if the question is lame.
Given the following WRONG code:
var jobSummaries = from job in jobs
where ...
select new
...
6
votes
5answers
629 views
Replacing a regular method with an anonymous method in C#/LINQ
I have a LINQ query that looks like this:
public IEnumerable<Foo> SelectFooBars()
{
return
from
f in foos
join
b in bars
on f.BarId ...
6
votes
3answers
3k views
EventHandlers and Anonymous Delegates / Lambda Expressions
I'm hoping to clear some things up with anonymous delegates and lambda expressions being used to create a method for event handlers in C#; for myself at least.
Suppose we have an event that adds ...
6
votes
6answers
3k views
C#: Is it possible to declare a local variable in an anonymous method?
Is is possible to have a local variable in an anonymous c# methods, i.e. in the following code I would like to perform the count only once.
IQueryable<Enquiry> linq = db.Enquiries;
if(...) ...
5
votes
3answers
82 views
Getting target of Action
I have created the fallowing Sample-Code:
class Program {
static void Main(string[] args) {
var x = new ActionTestClass();
x.ActionTest();
var y = x.Act.Target;
}
}
...
5
votes
2answers
179 views
Discrete Anonymous methods sharing a class?
I was playing a bit with Eric Lippert's Ref<T> class from here. I noticed in the IL that it looked like both anonymous methods were using the same generated class, even though that meant the ...
5
votes
1answer
119 views
Confusion about anonymous methods parameters
While learning on anonymous methods, i've found the following example on the internet:
namespace AnonymousMethods
{
public class MyClass
{
public delegate void MyDelegate(string ...
5
votes
3answers
564 views
Why can't c# use inline anonymous lambdas or delegates?
I hope I worded the title of my question appropriately.
In c# I can use lambdas (as delegates), or the older delegate syntax to do this:
Func<string> fnHello = () => "hello";
...
5
votes
3answers
441 views
Casting anonymous procedures in Delphi 2009
The following code (constructed only to demonstrate the problem) compiles and works in Delphi 2010. In Delphi 2009, compiler fails with "E2035 Not enough actual parameters".
program Project50;
...
5
votes
3answers
3k views
Does VB.NET have anonymous functions?
From what I can find on google, VB.NET only has one-statement lambdas, and not multi-statement anonymous functions. However, all the articles I read were talking about old versions of VB.NET, I ...
5
votes
4answers
861 views
Why can I not edit a method that contains an anonymous method in the debugger?
So, every time I have written a lambda expression or anonymous method inside a method that I did not get quite right, I am forced to recompile and restart the entire application or unit test framework ...
4
votes
3answers
266 views
VCL events with anonymous methods - what do you think about this implementation?
Since anonymous methods appeared in Delphi I wanted to use them in VCL components events. Obviously for backward compatibility the VCL wasn't updated, so I managed to make a simple implementation with ...