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