I\'m a very new to C#. Just playing around with it. Not for a real purpose.
void makeOutput( int _param) { Console.WriteLine( _param.ToString()); } //..
I had similar problem and friend showed me the way:
makeOutput((new Func(() => { return 0; })).Invoke());
Hope this will help