Why does this:
Private [Function] As Func(Of Double, String) = Function(ByRef z As Double) z.ToString
gives the following error:
Nested function does not have a signature that is compatible with delegate String)'.
While this:
Private [Function] As Func(Of Double, String) = Function(ByVal z As Double) z.ToString
Does not? (The difference is ByRef/ByVal)
Furthermore, how might I implement such a thing?