Skip to content

Instantly share code, notes, and snippets.

@idg10
Last active September 11, 2018 07:26
Show Gist options
  • Save idg10/d515cefe134d80831b1b7dafce434cb5 to your computer and use it in GitHub Desktop.
Save idg10/d515cefe134d80831b1b7dafce434cb5 to your computer and use it in GitHub Desktop.
Incorrect resource handling with Func-based deferred execution
// This doesn't work.
public static Func<string> GetContentGetter(string configPath)
{
using (var reader = new StreamReader(configPath))
{
return () => reader.ReadToEnd();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment