if ( (new Func</*out*/ string, bool>( (/*out*/ string uname) => ....

more details : that is a part of login function and I just want that my lambda function to changes login-name user with a out parameter and said me that user logined with it's bool return.

I really understand that I can return the Tuple and then get my string value but I want exactly out parameter for some personal clarity. I better return only string with null if user is not login, just want to know if I can use out parameters inside lambda functions.

And I really get that the code with expressions on the statement places is not so clean But none said me if that is really bad for compiler.

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

Lambda expressions won't work, but for delegates you should be fine using a statement body:

bool outval = false; // definite assignment
Func<bool> func = () => {
    return SomeMethod(out foo);
};
bool returned = func();
// check both outval and returned

For delegates... You will need to define your own:

public delegate bool MyType(out string value);
link|improve this answer
So... I really don't wanted to use delegates here but I even didn't knew if they can works fine here. – Sholy Apr 4 '11 at 14:16
1  
No, you do want delegates here, just probably not lambda expressions. – Adam Rackis Apr 4 '11 at 14:19
Ok , Yes, I do :) if ((new ChUname((out string uname) => ... works well. – Sholy Apr 4 '11 at 14:23
1  
that's still a lambda. You can't have (out string usname) => ... Forget about lambdas and just read about basic delegate usage. – Adam Rackis Apr 4 '11 at 14:26
But it works just fine, ChUname is my delegate it can changes my user's name. – Sholy Apr 5 '11 at 5:08
feedback

You cannot use out parameters with a lambda expression. See this stackoverflow question

link|improve this answer
feedback

While you can't use the out keyword I did find a solution that lets you basically achieve C++ style memory pointers in .NET. I found this class due to the very reason you opened this SO question not being able to use an out parameter where I wanted it.

public class Ptr<T>
{
    Func<T> getter;
    Action<T> setter;

    public Ptr(Func<T> g, Action<T> s)
    {
        getter = g;
        setter = s;
    }

    public T Deref
    {
        get { return getter(); }
        set { setter(value); }
    }
}

Usage example

private IDocumentSession _session = DocumentStore.OpenSession()

var ptr = new Ptr<IDocumentSession>(
                () => _session, 
                newValue => _session = newValue))

session.Deref.SaveChanges();
session.Deref = DocumentStore.OpenSession();

I use this in a batch program that allows batch operations to control session flushing with RavenDB when I need fine grained session control while also leaving an ambient session context. Word of warning I have no idea what implications this type of code would have in a long running production app since I'm not sure if this would confuse the GC and cause memory to never be reclaimed.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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