##// END OF EJS Templates
Закрыть ветку diagnostics
Закрыть ветку diagnostics

File last commit:

r36:313f708a50e9 diagnostics
r38:1cedc4e58acc diagnostics
Show More
TraceEvent.cs
27 lines | 683 B | text/x-csharp | CSharpLexer
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab.Diagnostics {
public class TraceEvent {
public string Message {
get;
private set;
}
public TraceEventType EventType {
get;
private set;
}
public TraceEvent(TraceEventType type, string message) {
EventType = type;
Message = message;
}
public static TraceEvent Create(TraceEventType type, string format, params object[] args) {
return new TraceEvent(type, String.Format(format, args));
}
}
}