public object MethodName(ref float y)
{
//method
}
如何为这个方法定义一个 Func 委托?
它不能完成,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);
}
在 .NET 4+ 中,您还可以通过ref
这种方式支持类型...
public delegate bool MyFuncExtension<in string, MyRefType, out Boolean>(string input, ref MyRefType refType);