##// END OF EJS Templates
Added tests for Implab.ServiceHost.Unity configuration loader.
Added tests for Implab.ServiceHost.Unity configuration loader.

File last commit:

r289:95896f882995 v3.0.14 v3
r289:95896f882995 v3.0.14 v3
Show More
LogicalOperation.cs
26 lines | 647 B | text/x-csharp | CSharpLexer
cin
Added tests for Implab.ServiceHost.Unity configuration loader.
r289 using System;
using Stopwatch = System.Diagnostics.Stopwatch;
namespace Implab.Diagnostics {
public class LogicalOperation {
readonly Stopwatch m_stopwatch;
public string Name { get; private set; }
internal LogicalOperation(string name) {
Name = string.IsNullOrEmpty(name) ? "<unnamed>" : name;
m_stopwatch = Stopwatch.StartNew();
}
public TimeSpan Elapsed {
get {
return m_stopwatch.Elapsed;
}
}
public void End() {
m_stopwatch.Stop();
}
public override string ToString() => Name;
}
}