##// END OF EJS Templates
Слияние
Слияние

File last commit:

r194:d45bdf510514 v2
r206:86b61d53b7db merge v2
Show More
LogEventArgsT.cs
13 lines | 384 B | text/x-csharp | CSharpLexer
namespace Implab.Diagnostics {
public class LogEventArgs<TEvent> : LogEventArgs {
public TEvent Value {
get;
private set;
}
public LogEventArgs(TEvent value,object channel, int threadId, LogicalOperation operation, int timeOffset) : base(channel, threadId, operation, timeOffset) {
Value = value;
}
}
}