Skip to content

Instantly share code, notes, and snippets.

@wullemsb
Created January 24, 2026 14:04
Show Gist options
  • Select an option

  • Save wullemsb/d3ae1d4d76b9e09e9a2d86080fa403d6 to your computer and use it in GitHub Desktop.

Select an option

Save wullemsb/d3ae1d4d76b9e09e9a2d86080fa403d6 to your computer and use it in GitHub Desktop.
// Non-generic version
ILogger logger = NullLogger.Instance;
// Generic version (most common)
ILogger<MyClass> logger = NullLogger<MyClass>.Instance;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment