Func委托与ref变量

时间:2010-03-17 14:04:53

标签: c# c#-3.0 reference delegates func

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

如何为此方法定义Func委托?

2 个答案:

答案 0 :(得分:81)

Func无法完成,但您可以为其定义自定义delegate

public delegate object MethodNameDelegate(ref float y);

用法示例:

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

public void MethodCallThroughDelegate()
{
    MethodNameDelegate myDelegate = MethodWithRefFloat;

    float y = 0;
    myDelegate(ref y);
}

答案 1 :(得分:6)

在.NET 4+中,您也可以通过这种方式支持ref类型...

public delegate bool MyFuncExtension<in string, MyRefType, out Boolean>(string input, ref MyRefType refType);