I'm trying to compile some code in MonoTouch but I'm getting an error: 'type or namespace name 'Func' could not be found'
According to MSDN the delegate 'Func' is found in System and specifically the mscorlib assembly, I'm not sure if that is included in MonoTouch?
Not too sure what I should do at this point, I'm thinking maybe I should just replace Func with my own version of it (it doesn't seem to be too complicated as a delegate).
Any ideas?
Func is available in MonoTouch according to the documentation: http://go-mono.com/docs/monodoc.ashx?link=T%3aSystem.Func%601
You could easily replicate the declaration of the Func delegate. Perhaps you could post your usage of it so we can check that?