Skip to content

Instantly share code, notes, and snippets.

@OdeToCode
Created August 9, 2014 16:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save OdeToCode/7362ca68adb87063c227 to your computer and use it in GitHub Desktop.
Save OdeToCode/7362ca68adb87063c227 to your computer and use it in GitHub Desktop.
public class Logger(Stream stream) : IDisposable
{
public void Dispose()
{
Stream.Dispose();
}
public Stream Stream { get; set; } = stream;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment