public class Foo
{
    public void DoFoo()
    {
       int x;
       var coll = TheFunc("bar", out x);
    }

    public Func<string, int, ICollection<string>> TheFunc { get; set; }
}

Error: "Argument 2 should not be passed with the 'out' keyword."

public class Foo
{
    public void DoFoo()
    {
       int x;
       var coll = TheFunc("bar", out x);
    }

    public Func<string, out int, ICollection<string>> TheFunc { get; set; }
}

Error: "Invalid variance modifier. Only interface and delegate type parameters can be specified as variant."

How do I get an out parameter in this function?

link|improve this question

76% accept rate
see stackoverflow.com/questions/1365689/… for some details – shelleybutterfly Jul 22 '11 at 20:32
FYI the more general rule here is that a type argument must be a type which is convertible to object. "out int" is not convertible to object; you cannot convert "reference to an int variable" to object. – Eric Lippert Jul 22 '11 at 20:35
feedback

2 Answers

up vote 5 down vote accepted

You need to make your own delegate:

delegate ICollection<string> MyFunc(string x, out int y);
link|improve this answer
feedback

Define a delegate type:

public delegate ICollection<string> FooDelegate(string a, out int b);

public class Foo
{
    public void DoFoo()
    {
       int x;
       var coll = TheFunc("bar", out x);
    }

    public FooDelegate TheFunc { get; set; }
}
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.