Skip to content

Instantly share code, notes, and snippets.

@JeremySkinner
Created January 8, 2010 22:39
Show Gist options
  • Select an option

  • Save JeremySkinner/272517 to your computer and use it in GitHub Desktop.

Select an option

Save JeremySkinner/272517 to your computer and use it in GitHub Desktop.
//Yuck...
IEnumerable<Func<object, object>> funcs = GetFuncs();
var convertedFuncs = funcs.Select(func => new Func<T, object>(x => func(x))).ToList();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment