##// END OF EJS Templates
Working on regular DFA
Working on regular DFA

File last commit:

r134:04d4c92d0f28 v2
r171:0f70905b4652 ref20160224
Show More
LogEventArgsT.cs
13 lines | 392 B | text/x-csharp | CSharpLexer
cin
rewritten tracing
r92 namespace Implab.Diagnostics {
public class LogEventArgs<TEvent> : LogEventArgs {
public TEvent Value {
get;
private set;
}
cin
Improved logging
r134 public LogEventArgs(TEvent value,string channelName, int threadId, LogicalOperation operation, int timeOffset) : base(channelName, threadId, operation, timeOffset) {
cin
rewritten tracing
r92 Value = value;
}
}
}