Skip to content

Instantly share code, notes, and snippets.

@rarous
Last active December 10, 2015 13:48
Show Gist options
  • Select an option

  • Save rarous/4443325 to your computer and use it in GitHub Desktop.

Select an option

Save rarous/4443325 to your computer and use it in GitHub Desktop.
S CodeRushem napíšu ve třídě "l" a mám logování připravený.
ILogger logger = NullLogger.Instance;
public ILogger Log
{
get { return logger; }
set { logger = value ?? NullLogger.Instance; }
}
@jfojtl
Copy link

jfojtl commented Jul 4, 2013

rozlišuješ mezi statickým loggerem a instančním?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment