Advertisement
pszczyg

DecoratorLogger_3

Jul 28th, 2021
1,146
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.17 KB | None | 1 0
  1. public class MyCmdlet : PSCmdlet
  2. {
  3.  private ILogger Logger;
  4.  
  5.  protected CoreViewCmdlet(ILogger logger = null) {
  6.     Logger = logger ?? new CmdletLogger(this);
  7.  }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement