ILogWriter.cs
8 lines
| 156 B
| text/x-csharp
|
CSharpLexer
|
|
r134 | using System; | ||
| namespace Implab.Diagnostics { | ||||
| public interface ILogWriter<in TEvent> { | ||||
| void Write(LogEventArgs args, TEvent entry); | ||||
| } | ||||
| } | ||||
