Func<a, out b, bool>, just don't compile, how to declare that i want the second parameter be an out one?
I want to use it like this:
public class Foo()
{
public Func<a, out b, bool> DetectMethod;
}
|
feedback
|
|
Actually Func is just a simple delegate declared in the .NET Framework. Actually there are several Func delegates declared there:
So the only thing you can do is declare your custom delegate:
| |||||||
|
feedback
|
|
You need to make your own delegate type, like this:
| |||||
feedback
|
|
You might want to rethink your design. Do you really need to complicate your code by adding an out parameter? You can wrap the bool return type and the second out type in their own class (or .NET 4.0 Tuple) and use that as a return type:
Of course when you want to use the delegates to reference try-parse methods, you are on the right track and you'll need to define a new delegate as others already described. | |||
|
feedback
|