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);