vote up 4 vote down star
2

I have the following code:

class myClass
{
private delegate string myDelegate(Object bj);

protected void method()
   {
   myDelegate build = delegate(Object bj)
                {
                    var letters= string.Empty;
                    if (someCondition)
                        return build(some_obj); //This line seems to choke the compiler
                    else string.Empty;

                };
   ......
   }
}

Is there another way to set up an anonymous method in C# such that it can call itself?

flag

The exact complaint from VS2008 is: Local Variable 'build' may not be initialized before accessing. – Matt Jul 30 at 19:15

5 Answers

vote up 16 vote down check

You can break it down into two statements and use the magic of captured variables to achieve the recursion effect:

myDelegate build = null;
build = delegate(Object bj)
        {
           var letters= string.Empty;
           if (someCondition)
               return build(some_obj);                            
           else string.Empty;
        };
link|flag
+1 Nicely done! Very clever solution :) – Andrew Hare Jul 30 at 19:21
vote up 2 vote down

Anonymous Recursion in C# has a terrific discussion on this topic.

Recursion is beautiful and lambdas are the ultimate abstraction. But how can they be used together? Lambdas are anonymous functions and recursion requires names...

link|flag
2  
Y-combinator for the win! :-) – Jeffrey Hantin Jul 30 at 19:20
vote up 0 vote down

If you're getting to the point of recursive anonymous methods, you may want to promote it to be a normal, private method in your class.

link|flag
vote up 4 vote down

You cannot call build inside build itself since the body of the anonymous method is the initialization of the variable itself. You are trying to use a variable before it is defined.

Not that I recommend this (as it would be much simpler to create a real method here that is recursive) but if you are interested you can read Anonymous Recursion in C#:

Recursion is beautiful and lambdas are the ultimate abstraction. But how can they be used together? Lambdas are anonymous functions and recursion requires names.

link|flag
+1 for the good description of why the error exists. It's easy to workaround (see Mehrdad's answer), but I don't think its a good idea in the first place. – Reed Copsey Jul 30 at 19:20
vote up 10 vote down

If you're creating a recursive function, I'd recommend avoiding anonymous delegates. Just create a method and have it call itself recursively.

Anonymous methods are meant to be anonymous - you shouldn't be calling them by name (non-anonymously).

link|flag
2  
+1 I couldn't agree more. – Andrew Hare Jul 30 at 19:19

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.