public object MethodName(ref float y)
{
//method
}

How do I defined a Func delegate for this method?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 15 down vote accepted

It cannot be done by Func but you can define a custom delegate for it:

public delegate object MethodNameDelegate(ref float y);

Usage example:

public object MethodWithRefFloat(ref float y)
{
    return null;
}

public void MethodCallThroughDelegate()
{
    MethodNameDelegate myDelegate = MethodWithRefFloat;

    float y = 0;
    myDelegate(ref y);
}
link|improve this answer
7  
The reason being: all generic type arguments must be things that are convertible to object. "ref float" is not convertible to object, so you cannot use it as a generic type argument. – Eric Lippert Mar 17 '10 at 14:23
Thanks for that, I was struggling to use Func so I know why I cant use it when type is not convertible to object – chugh97 Mar 17 '10 at 15:28
feedback

Your Answer

 
or
required, but never shown

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