IStopwatch public interface IStopwatch Abstraction for a stopwatch to compute time relative to a starting point. Documentation Code namespace System.Reactive.Concurrency { public interface IStopwatch { TimeSpan Elapsed { get; } } }