In C#, I want to do something like this.
var fn = // set it to the function and parameters it'll use
fn();
In a hypothetical example, say I wanted to return a function with all of the parameters it needed to execute, I just wanted to execute it from somewhere else.